-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1.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
{
"name": "chat-wizard",
"version": "0.9.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "cd web && pnpm install",
"dev": "cd gui && RUST_LOG=chat_wizard_service=debug cargo tauri dev --no-watch",
"dev:web": "cd web && pnpm dev",
"build": "pnpm run build:gui",
"build:web": "cd web && pnpm build",
"build:gui": "cd gui && cargo tauri build",
"build:server": "pnpm run build:web && cd server && cargo build --release",
"icon": "cd gui && cargo tauri icon icons/macos/app-icon.png -o icons/macos && cargo tauri icon icons/windows/app-icon.png -o icons/windows && cargo tauri icon icons/linux/app-icon.png -o icons/linux",
"version:patch": "node version.js patch",
"version:minor": "node version.js minor",
"version:major": "node version.js major",
"version:release": "node version.js release",
"version:publish": "node version.js publish",
"cz": "npx cz",
"commit": "npx cz",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@types/node": "^18.15.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}