-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.69 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
94
95
96
97
98
99
100
{
"name": "starter-lib-vue3",
"type": "module",
"version": "0.4.0",
"packageManager": "pnpm@9.10.0",
"description": "Vue 3 component library starter template, provides VitePress documentation, supports building ESM, CJS and IIFE formats. ",
"author": "Kieran Wang <kieranwme@gmail.com> (https://github.com/kieranwv/)",
"license": "MIT",
"homepage": "https://github.com/starter-collective/starter-lib-vue3#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/starter-collective/starter-lib-vue3.git"
},
"bugs": {
"url": "https://github.com/starter-collective/starter-lib-vue3/issues"
},
"keywords": [
"vue3",
"component",
"library",
"starter"
],
"sideEffects": [
"dist/**/*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*",
"./volar": "./dist/volar.d.ts",
"./style.css": "./dist/style.css"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18 || >=20 || >=22",
"pnpm": ">=9.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"dev": "vite build --watch",
"build": "pnpm clean && vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "pnpm build && vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"clean": "rimraf dist",
"release": "bumpp && pnpm build && pnpm publish"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^12.2.0",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.11",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"rimraf": "^6.0.1",
"rollup-plugin-copy": "^3.5.0",
"shiki": "^1.24.4",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}