-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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": "@whouu/geist-design",
"version": "1.0.4",
"type": "module",
"description": "A Geist Design UI framework for Vue3",
"files": [
"dist"
],
"main": "./dist/geist-design.umd.js",
"module": "./dist/geist-design.es.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/geist-design.es.js",
"require": "./dist/geist-design.umd.js"
}
},
"unpkg": "dist/geist-design.umd.js",
"style": "dist/index.css",
"sideEffects": [
"dist/index.css"
],
"scripts": {
"start": "vite -c ./start/vite.config.ts",
"dev": "npm run docs:dev",
"build": "vue-tsc --noEmit && vite build && vite build -c vite.config.css.ts",
"release": "npm publish --registry https://registry.npmjs.org --access public",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:release": "vercel --prod",
"plop": "plop",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue component",
"geist",
"vue ui"
],
"author": "Lei Zhang",
"email": "[email protected]",
"homepage": "https://geist-design.lovchun.com",
"repository": "https://github.com/PassionZale/geist-design",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.4",
"@types/prismjs": "^1.26.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-vue": "^4.4.0",
"@whouu/geist-design-icons": "^1.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"plop": "^4.0.0",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.2.0",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"sass": "^1.69.3",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0",
"vite-svg-loader": "^4.0.0",
"vitepress": "^1.0.0-rc.22",
"vue": "^3.3.4",
"vue-tsc": "^1.8.18"
},
"peerDependencies": {
"vue": "^3.3.x"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}