-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "everate",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/everiary/everate"
},
"type": "module",
"author": "wemsx",
"license": "MIT",
"homepage": "https://everate.wemsx.top",
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"release": "standard-version",
"pages": "git subtree push --prefix dist origin gh-pages"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.3"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.3",
"@unocss/preset-uno": "^0.57.7",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/tsconfig": "^0.4.0",
"pinia-plugin-persistedstate": "^3.2.1",
"terser": "^5.26.0",
"typescript": "~5.2.2",
"unocss": "^0.57.7",
"vite": "^5.0.10",
"vue-tsc": "^1.8.25"
}
}