-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "@layui/icons-vue",
"version": "1.0.5",
"description": "a component library for Vue 3 base on layui-vue",
"homepage": "https://gitee.com/layui-vue/icons-vue/blob/master/README.md",
"module": "lib/icons-vue.es.js",
"main": "lib/icons-vue.umd.js",
"exports": {
".": {
"import": "./lib/icons-vue.es.js",
"require": "./lib/icons-vue.umd.js"
},
"./lib/": "./lib/"
},
"types": "types/index.d.ts",
"style": "lib/index.css",
"scripts": {
"dev": "vite",
"build": "vite build --emptyOutDir && npm run build:types",
"build:types": "rimraf types && tsc -d",
"generate": "node ./scripts/generate.ts"
},
"keywords": [
"layui-icon",
"icons-vue",
"vue"
],
"author": "就眠儀式",
"license": "MIT",
"dependencies": {
"vue": "^3.2.30"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.4",
"@types/node": "^16.11.9",
"@vitejs/plugin-vue": "^1.9.3",
"@vue/compiler-sfc": "^3.2.30",
"@vue/server-renderer": "^3.2.30",
"escape-html": "^1.0.3",
"less": "^4.1.2",
"markdown-it-container": "^3.0.0",
"prismjs": "^1.25.0",
"rimraf": "^3.0.2",
"rollup": "^2.0.0",
"typescript": "^4.5.2",
"vite": "2.6.14",
"vite-plugin-md": "^0.11.4"
},
"files": [
"lib",
"types"
],
"browserslist": [
"current node",
"last 2 versions and > 2%",
"ie > 10"
]
}