-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "my-lib",
"version": "0.0.0",
"scripts": {
"build": "rimraf dist && vue-tsc && vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"peerDependencies": {
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "^3.29.2",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@vitejs/plugin-vue": "^4.2.3",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitepress": "^0.22.4",
"vue-tsc": "^1.8.3"
},
"files": [
"src",
"dist"
],
"module": "./dist/my-lib.es.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/my-lib.es.js"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuruoyun/vue-component-lib-starter.git"
}
}