-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.8 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
{
"name": "jet-plan-ui",
"version": "4.3.2--alpha",
"browserslist": 4,
"type": "module",
"files": [
"dist"
],
"main": "./dist/jet-plan-ui.cjs.js",
"module": "./dist/jet-plan-ui.es.js",
"unpkg": "./dist/jet-plan-ui.umd.js",
"jsdelivr": "./dist/jet-plan-ui.umd.js",
"exports": {
".": {
"types": "./dist/packages/jet-plan-ui/index.d.ts",
"module": "./dist/jet-plan-ui.es.js",
"import": "./dist/jet-plan-ui.es.js",
"require": "./dist/jet-plan-ui.cjs.js",
"default": "./dist/jet-plan-ui.es.js"
}
},
"scripts": {
"devServer": "vite --port 5173 --host",
"preview": "vite preview --port 5173 --host",
"test:unit": "vitest --environment jsdom",
"test:e2e:dev": "start-server-and-test devServer 5173 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview 5173 'cypress run --e2e'",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"gen": "node ./script/genNewComp/index.js",
"build-only": "vite build",
"build:lib": "run-p type-check && vite build --config ./vite.config.lib.ts",
"build:doc": "run-p type-check build-only&& node script/copyDir.js"
},
"peerDependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"highlight.js": "^11.7.0",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
"highlight.js": "^11.7.0",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"devDependencies": {
"pinia": "^2.0.21",
"@babel/types": "^7.20.5",
"@rollup/pluginutils": "^4.2.1",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vitest/ui": "^0.25.3",
"@vue/compiler-dom": "^3.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/server-renderer": "^3.0.1",
"@vue/test-utils": "^2.2.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.11",
"babel-core": "^6.26.3",
"core-js": "^3.8.3",
"cypress": "^10.9.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"fp-ts": "^2.12.1",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.7",
"happy-dom": "^6.0.4",
"inferred-types": "^0.22.0",
"inquirer": "^8.2.4",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.0",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"start-server-and-test": "^1.14.0",
"typescript": "^5.1.3",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-inspect": "^0.7.9",
"vite-plugin-libcss": "^1.1.1",
"vite-plugin-md": "^0.20.4",
"vitest": "^0.23.0",
"vue-tsc": "^1.0.11"
}
}