-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
80 lines (80 loc) · 2.21 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
79
80
{
"name": "gpt-runner",
"type": "module",
"version": "1.2.9",
"private": true,
"packageManager": "pnpm@8.4.0",
"engines": {
"node": ">=16.15.0",
"pnpm": ">=8"
},
"scripts": {
"build": "rimraf packages/*/dist && esno scripts/copy-files.ts && pnpm -r --filter=./packages/* run build && pnpm -r run build-post",
"dev": "pnpm stub",
"play": "npm -C playground run dev",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"pkg:alias": "esno ./scripts/cli-pkg-alias.ts",
"postinstall": "pnpm build",
"release": "bumpp -r",
"stub": "pnpm -r --filter=./packages/* --parallel run stub",
"taze": "taze minor -wIr && pnpm -r --parallel run update-post",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:update": "vitest -u",
"test:ci": "pnpm build && pnpm typecheck && pnpm lint && pnpm test"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.2",
"@nicepkg/gpt-runner": "workspace:*",
"@nicepkg/gpt-runner-cli": "workspace:*",
"@nicepkg/gpt-runner-core": "workspace:*",
"@nicepkg/gpt-runner-shared": "workspace:*",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.19",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.20",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitest/ui": "^0.34.1",
"bumpp": "^9.1.1",
"eslint": "8.47.0",
"esno": "^0.17.0",
"execa": "^7.2.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"jiti": "^1.19.1",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"msw": "1.2.3",
"pnpm": "8.6.12",
"prettier": "^3.0.1",
"react": "^18.2.0",
"rollup": "^3.28.0",
"semver": "^7.5.4",
"simple-git-hooks": "^2.9.0",
"taze": "^0.11.2",
"terser": "^5.19.2",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"unbuild": "^0.8.11",
"unplugin-auto-import": "^0.16.6",
"vite": "^4.4.9",
"vite-plugin-inspect": "^0.7.38",
"vite-plugin-pages": "^0.31.0",
"vitest": "^0.34.1"
},
"pnpm": {
"overrides": {
"magic-string": "^0.30.0",
"axios": "1.3.4"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}