-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "picx-app",
"private": true,
"version": "0.0.11",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write ./src",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"commitlint": "commitlint --edit",
"prepare": "husky install",
"release": "standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@iconify/vue": "^4.1.1",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@tauri-apps/api": "^1.5.0",
"@types/lodash-es": "^4.17.10",
"@vueuse/core": "^10.5.0",
"@vueuse/integrations": "^10.6.1",
"@vueuse/router": "^10.6.1",
"change-case": "^4.1.2",
"highlight.js": "^11.9.0",
"lodash-es": "^4.17.21",
"octokit": "^3.1.1",
"pinia": "^2.1.7",
"vue": "^3.3.8",
"vue-i18n": "^9.7.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@iconify/json": "^2.2.135",
"@octokit/openapi-types": "^19.0.2",
"@tauri-apps/cli": "^1.5.0",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.1.0",
"naive-ui": "^2.35.0",
"prettier": "^3.1.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.2",
"unocss": "^0.57.1",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.1",
"unplugin-vue-components": "^0.25.2",
"v-lazy-show": "^0.2.4",
"vite": "^4.4.4",
"vite-plugin-pages": "^0.31.0",
"vue-tsc": "^1.8.5"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}