-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
28 lines (28 loc) · 1.07 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
{
"name": "angor",
"version": "0.0.76",
"license": "MIT",
"scripts": {
"version": "node -p \"require('./package.json').version\"",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"build": "dotnet build src/Angor/Client",
"start": "dotnet run --project src/Angor/Client",
"cypress:open": "cypress open --config-file src/testing/cypress.config.js",
"cypress:run": "cypress run --config-file src/testing/cypress.config.js",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:win-x64": "tauri build --target x86_64-pc-windows-msvc",
"tauri:build:win-arm64": "tauri build --target arm64ec-pc-windows-msvc",
"tauri:build:osx-x64": "tauri build --target x86_64-apple-darwin",
"tauri:build:osx-arm64": "tauri build --target aarch64-apple-darwin",
"tauri:build:linux-x64": "tauri build --target x86_64-unknown-linux-gnu"
},
"private": true,
"dependencies": {
"js-base64": "^3.7.7"
},
"devDependencies": {
"cypress": "^13.9.0",
"@tauri-apps/cli": "^2.1.0"
}
}