forked from Web3dGuy/tauri-workflow-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.17 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
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
{
"name": "tauri-template",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Production-ready Tauri template with React, TypeScript, Blueprint.js, and comprehensive tooling",
"author": "Your Name",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"lint:css": "stylelint \"src/**/*.scss\" --fix",
"lint:css:production": "stylelint \"src/**/*.scss\" --config .stylelintrc.production.cjs",
"lint:css:ci": "stylelint \"src/**/*.scss\" --config .stylelintrc.production.cjs --formatter compact",
"prepare": "husky install",
"docker": "node docker/run-docker-script.js",
"docker:menu": "npm run docker",
"docker:build-image": "npm run docker -- build-image",
"docker:build-tauri": "npm run docker -- build-tauri",
"docker:build-all": "npm run docker -- build-all",
"docker:run": "npm run docker -- run",
"docker:clean": "npm run docker -- clean",
"docker:check": "npm run docker -- check",
"docker:help": "npm run docker -- --help",
"docker:quiet": "npm run docker -- --quiet",
"docker:show-logs": "npm run docker -- show-logs"
},
"dependencies": {
"@blueprintjs/core": "^6.0.0",
"@blueprintjs/icons": "^6.0.0",
"@blueprintjs/select": "^6.0.0",
"@tauri-apps/api": "^2",
"@tauri-apps/cli": "^2.6.2",
"@tauri-apps/plugin-opener": "^2",
"perfect-scrollbar": "^1.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/perfect-scrollbar": "^0.7.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"sass-embedded": "^1.89.2",
"stylelint": "^16.21.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-scss": "^6.12.1",
"typescript": "~5.6.2",
"vite": "^6.0.3"
},
"lint-staged": {
"src/**/*.scss": [
"npm run lint:css"
]
},
"keywords": [
"tauri",
"react",
"typescript",
"blueprint",
"template",
"desktop",
"cross-platform"
]
}