-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "tauri-vite-app-demo",
"version": "0.1.3",
"author": "ddki",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write .",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepare": "husky install",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lib": "rimraf node_modules",
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && pnpm install",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGE_LOG.md -s -n changelog-config.cjs",
"release": "npx release-it --increment patch --config .release-it.cjs",
"script:changelog": "npx esmo scripts/changelog.ts --version ",
"script:update": "npx esmo scripts/update.ts"
},
"dependencies": {
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@actions/github": "^5.1.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/types": "^17.4.4",
"@playwright/test": "^1.31.1",
"@release-it/bumper": "^4.0.2",
"@release-it/conventional-changelog": "^5.1.1",
"@rushstack/eslint-patch": "^1.2.0",
"@tauri-apps/api": "2.0.0-alpha.4",
"@tauri-apps/cli": "2.0.0-alpha.16",
"@tauri-apps/plugin-window": "2.0.0-alpha.0",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.0",
"@vue/tsconfig": "^0.1.3",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-git": "^1.6.1",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"esno": "^0.16.3",
"husky": "^8.0.3",
"inquirer": "8",
"internal-ip": "^7.0.0",
"jsdom": "^21.1.0",
"kleur": "^4.1.5",
"minimist": "^1.2.8",
"node-fetch": "^3.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"release-it": "^15.11.0",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "~4.8.4",
"unplugin-auto-import": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.1.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-windicss": "^1.8.10",
"vitest": "^0.29.1",
"vue-tsc": "^1.2.0",
"windicss": "^3.5.6"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,json,css,scss,yaml}": [
"prettier --write"
],
"**/*.{cjs,mjs,ts,vue}": [
"eslint --fix"
],
"**/*": [
"git add"
]
}
}