This repository was archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.27 KB
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
{
"name": "root",
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"dev": "lerna run build --scope \"gpt-turbo\" && lerna watch --scope \"gpt-turbo\" --include-dependencies -- lerna run build --scope=\"gpt-turbo\"",
"build": "lerna run build",
"build:lib": "lerna run build --scope \"gpt-turbo\"",
"build:stats": "lerna run build --scope \"gpt-turbo-plugin-stats\"",
"build:web": "lerna run build --scope \"gpt-turbo-web\"",
"build:cli": "lerna run build --scope \"gpt-turbo-cli\"",
"build:discord": "lerna run build --scope \"gpt-turbo-discord\"",
"lint:strict": "lerna run lint:strict",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"release": "npm run build && npm test && lerna publish",
"release:patch": "npm run build && npm test && lerna publish patch --yes",
"release:minor": "npm run build && npm test && lerna publish minor --yes",
"release:major": "npm run build && npm test && lerna publish major --yes",
"postinstall": "npm run build:lib && npm run build:stats"
},
"workspaces": [
"packages/**"
],
"devDependencies": {
"lerna": "^7.0.2",
"typescript": "^5.1.6"
},
"dependencies": {
"immer": "^10.0.2"
}
}