-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.13 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
{
"name": "vue-use-template",
"type": "module",
"version": "0.0.6",
"packageManager": "[email protected]",
"description": "vue use template",
"author": "Hunter Liu <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/hunterliu1003/vue-use-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunterliu1003/vue-use-template.git"
},
"bugs": "https://github.com/hunterliu1003/vue-use-template/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build -w",
"build": "vue-tsc && vite build",
"lint": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"release": "pnpm build && pnpm cypress:run && release-it",
"cypress:open": "cypress open --browser electron --component",
"cypress:run": "cypress run --component",
"bundle-visualizer": "vite-bundle-visualizer -t sunburst"
},
"peerDependencies": {
"@vueuse/core": "^10.7.2",
"vue": ">=3.0.0",
"vue-component-type-helpers": ">=2.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.11.17",
"@vitejs/plugin-vue": "^5.0.4",
"@vueuse/core": "^10.7.2",
"cypress": "^13.6.4",
"eslint": "npm:[email protected]",
"eslint-ts-patch": "8.56.0-0",
"lint-staged": "^15.2.2",
"pnpm": "^9.12.1",
"release-it": "^17.8.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-bundle-visualizer": "^1.1.0",
"vite-plugin-dts": "^3.7.2",
"vue": "^3.5.12",
"vue-component-type-helpers": "^2.1.6",
"vue-tsc": "^2.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}