-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.91 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@yelingfeng/pandora2",
"version": "1.0.6",
"files": [
"dist",
"volar.d.ts"
],
"repository": "https://github.com/yelingfeng/Pandora2.git",
"publishConfig": {
"access": "public"
},
"main": "./dist/pandora2.umd.js",
"module": "./dist/pandora2.es.js",
"types": "./dist/packages/index.d.ts",
"exports": {
".": {
"import": "./dist/pandora2.es.js",
"require": "./dist/pandora2.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite --config ./build/base.config.ts --host 0.0.0.0 ",
"build:docs": "vite build --config ./build/doc.config.ts && node script/copyDir.js",
"dist": "vite build --config ./build/doc.config.ts && node script/copyDir.js",
"build:lib": "vue-tsc --noEmit && vite build --config ./build/lib.config.ts",
"gen": "node ./script/genNewComp/index.js",
"build:npm": "vite build --config ./build/lib.config.ts",
"lint": "eslint src/**/*.{vue,ts}",
"lint-fix": "yarn lint --fix",
"commit": "git-cz",
"release:patch": "node script/release.mjs patch",
"release:minor": "node script/release.mjs minor",
"release:major": "node script/release.mjs major",
"release:tag": "node script/release-tag.mjs",
"preversion": "pnpm run test:ci && pnpm run build:lib",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"postversion": "git push origin HEAD --follow-tags",
"reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && yarn install",
"test": "vitest",
"test:ci": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@vueuse/core": "^9.1.0",
"async-validator": "^4.2.5",
"dayjs": "^1.11.4",
"echarts": "^6.0.0",
"element-plus": "^2.13.1",
"html2canvas": "^1.4.1",
"lodash-es": "^4.17.21",
"resize-detector": "^0.3.0"
},
"devDependencies": {
"@element-plus/icons-vue": "^2.0.6",
"@types/jest": "^28.1.6",
"@types/lodash-es": "^4.17.6",
"@types/node": "^25.0.9",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"@vue/compiler-sfc": "^3.5.26",
"@vue/test-utils": "^2.4.6",
"axios": "^0.27.2",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"csstype": "^3.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"inquirer": "^9.0.2",
"jest": "^28.1.3",
"jsdom": "^27.4.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^13.0.3",
"mockjs": "^1.1.0",
"np": "^7.6.2",
"prettier": "^2.7.1",
"prismjs": "^1.28.0",
"qs": "^6.11.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^5.9.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-element-plus": "^0.11.2",
"unplugin-vue-components": "^31.0.0",
"unplugin-vue-markdown": "^29.2.0",
"vite": "^7.3.1",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-dts": "^1.4.1",
"vite-plugin-md": "0.11.4",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0",
"vitest": "^4.0.18",
"vue": "^3.5.26",
"vue-router": "^4.1.3",
"vue-tsc": "^3.2.2",
"vue-types": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts?(x),json,md,vue}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}