-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "star-code",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "A star editor written by tauri",
"author": "jess <[email protected]>",
"keywords": [
"Tauri",
"Editor",
"Rust",
"TypeScript",
"Vue3"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"commit": "cz",
"lint": "eslint src",
"prepare": "husky install"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"@tauri-apps/api": "^1.1.0",
"highlight.js": "^11.6.0",
"pinia": "^2.0.23",
"vue": "^3.2.37"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.0",
"@types/node": "18.8.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-vue": "^3.0.1",
"commitizen": "^4.2.5",
"eslint": "^8.25.0",
"eslint-plugin-vue": "^9.6.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"typescript": "^4.6.4",
"vite": "^3.0.2",
"vue-tsc": "^1.0.8"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}