-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "deferredjson",
"version": "0.1.0",
"files": [
"Readme.md",
"dist/**/*"
],
"license": "MIT",
"repository": "github:gadget-inc/deferredjson",
"homepage": "https://github.com/gadget-inc/deferredjson",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"source": "src/index.ts",
"main": "dist/cjs/index.js",
"sideEffects": false,
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rm -rf dist && mkdir -p dist/cjs dist/esm && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && echo '{\"type\": \"module\"}' > dist/esm/package.json && tsc -b tsconfig.cjs.json tsconfig.esm.json",
"watch": "tsc --watch --preserveWatchOutput",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" TZ=UTC jest",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --check \"./**/*.{js,ts,tsx}\"",
"lint:eslint": "NODE_OPTIONS=\"--max-old-space-size=4096\" eslint --quiet --ext ts,tsx .",
"lint:fix": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --write --check \"./**/*.{js,ts,tsx}\" && eslint --ext ts,tsx --fix .",
"x": "tsx",
"prepublishOnly": "pnpm build",
"prerelease": "gitpkg publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.1",
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.3.90",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^16.11.7",
"eslint": "^8.57.0",
"execa": "^9.3.0",
"jest": "^29.7.0",
"markdown-table": "^3.0.3",
"msgpackr": "^1.11.0",
"prettier": "^2.8.8",
"tinybench": "^2.8.0",
"tsx": "^4.16.2",
"typescript": "5.4.5"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"packageManager": "[email protected]+sha256.553e4eb0e2a2c9abcb419b3262bdc7aee8ae3c42e2301a1807d44575786160c9"
}