-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2 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
{
"name": "vue-bundle-template",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "add description",
"author": "add author",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/vue-bundle-template",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/vue-bundle-template.git"
},
"bugs": "https://github.com/productdevbookcom/vue-bundle-template/issues",
"keywords": [
"add keywords"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js"
}
},
"main": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "vite build --mode production",
"build:watch": "vite build --watch",
"dev": "vite",
"play": "pnpm --filter playground dev",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"postinstall": "npx simple-git-hooks"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "2.8.0",
"@types/node": "^20.11.25",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.3.1",
"@vue-macros/volar": "^0.18.11",
"@vue/test-utils": "^2.4.4",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.10.0",
"typescript": "^5.4.2",
"unplugin-vue-macros": "^2.7.10",
"vite": "^5.1.5",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1",
"vue": "^3.4.21"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}