-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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": "@ektx/vc2",
"version": "1.16.7",
"type": "module",
"files": [
"lib",
"types",
"global.d.ts"
],
"scripts": {
"dev": "vipress",
"doc": "vipress build doc",
"lib": "vipress lib",
"build": "node ./bin/build.js",
"build2": "gulp -f ./bin/build2.js",
"update": "node --experimental-json-modules ./bin/update.mjs",
"create": "node ./bin/create.mjs && yarn run update",
"e2e": "./node_modules/.bin/cypress open",
"dts": "vue-tsc --declaration --emitDeclarationOnly"
},
"main": "lib/cjs/index.cjs",
"module": "lib/es/index.js",
"exports": {
".": {
"import": "./lib/es/index.js",
"require": "./lib/cjs/index.cjs"
},
"./lib/es/index.css": {
"import": "./lib/es/index.css",
"require": "./lib/es/index.css"
}
},
"style": "lib/es/index.css",
"types": "lib/es/index.d.ts",
"author": "WenLong",
"dependencies": {
"@floating-ui/dom": "^0.5.4",
"async-validator": "^4.0.7",
"dayjs": "^1.11.0",
"resize-observer-polyfill": "^1.5.1",
"vue": "^3.2.37",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/compiler-sfc": "^3.2.37",
"esbuild": "^0.17.18",
"gulp": "^4.0.2",
"inquirer": "^7.3.3",
"less": "^4.1.2",
"postcss": "^8.4.23",
"prismjs": "^1.29.0",
"rollup": "^3.21.4",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-postcss": "^4.0.2",
"trash": "^6.1.1",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
},
"license": "MIT"
}