-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.43 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
{
"name": "apicize",
"private": true,
"license": "UNLICENSED",
"workspaces": {
"packages": [
"@apicize/lib-typescript",
"@apicize/toolkit",
"app"
]
},
"scripts": {
"dev": "yarn workspace app dev",
"build": "yarn build-deps && yarn workspace app build",
"tauri": "yarn workspace app tauri",
"start": "yarn build-deps && yarn workspace app tauri dev",
"watch": "concurrently \"yarn workspace @apicize/lib-typescript watch\" \"yarn workspace @apicize/toolkit watch\" \"yarn workspace app tauri dev\"",
"clean": "rimraf node_modules @apicize/app/src-tauri/target @apicize/app/.next @apicize/app/node_modules @apicize/lib-typescript/dist @apicize/lib-typescript/node_modules @apicize/lib-typescript/tsconfig.tsbuildinfo @apicize/toolkit/dist @apicize/toolkit/node_modules @apicize/toolkit/tsconfig.tsbuildinfo",
"build-deps": "yarn workspace @apicize/lib-typescript build && yarn workspace @apicize/toolkit build",
"watch-deps": "concurrently \"yarn workspace @apicize/lib-typescript watch\" \"yarn workspace @apicize/toolkit watch\"",
"build:release": "yarn run build-deps && yarn tauri build",
"start:release": "yarn run build:release && ./app/src-tauri/target/release/apicize"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"concurrently": "^8.2.2",
"rimraf": "^5.0.5",
"smol-toml": "^1.3.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}