-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "wds",
"version": "0.21.1",
"author": "Harry Brundage",
"license": "MIT",
"bin": {
"wds": "pkg/wds.bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadget-inc/wds.git"
},
"publishConfig": {
"access": "public"
},
"types": "pkg/index.d.ts",
"type": "module",
"main": "pkg/index.js",
"files": [
"pkg/*",
"Readme.md",
"Contributing.md",
"LICENSE.txt"
],
"scripts": {
"build": "rm -rf pkg && tsc && chmod +x pkg/wds.bin.js pkg/wds-bench.bin.js",
"prepublishOnly": "pnpm run build",
"watch": "tsc -w",
"typecheck": "tsc --noEmit",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:prettier": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --check \"src/**/*.{js,ts,tsx}\"",
"lint:eslint": "NODE_OPTIONS=\"--max-old-space-size=4096\" eslint --quiet --ext ts,tsx src",
"lint:fix": "NODE_OPTIONS=\"--max-old-space-size=4096\" prettier --write --check \"src/**/*.{js,ts,tsx}\" && eslint --ext ts,tsx --fix src",
"prerelease": "gitpkg publish",
"test": "vitest run",
"integration-test": "pnpm run build && zx integration-test/test.js",
"test:watch": "vitest"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@pnpm/find-workspace-dir": "^1000.0.1",
"@swc/core": "^1.10.8",
"@swc/helpers": "^0.5.15",
"find-root": "^1.1.0",
"find-yarn-workspace-root": "^2.0.0",
"fs-extra": "^11.2.0",
"globby": "^11.1.0",
"lodash": "^4.17.20",
"micromatch": "^4.0.8",
"node-object-hash": "^3.1.1",
"oxc-resolver": "^1.12.0",
"pkg-dir": "^5.0.0",
"watcher": "^2.3.1",
"write-file-atomic": "^6.0.0",
"xxhash-wasm": "^1.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@types/find-root": "^1.1.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.10.1",
"@types/write-file-atomic": "^4.0.3",
"@types/yargs": "^15.0.19",
"eslint": "^8.57.1",
"gitpkg": "github:airhorns/gitpkg#gitpkg-v1.0.0-beta.4-gitpkg-82083c3",
"prettier": "^2.8.8",
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"zx": "^7.2.3"
},
"packageManager": "pnpm@8.12.0+sha256.553e4eb0e2a2c9abcb419b3262bdc7aee8ae3c42e2301a1807d44575786160c9"
}