-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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": "vxu-ui",
"private": false,
"version": "0.0.4",
"description": "vue3+ts UI 组件",
"type": "module",
"main": "./lib/vxu-ui.umd.js",
"module": "./lib/vxu-ui.es.js",
"types": "./lib/vxu-ui.es.d.ts",
"files": [
"lib",
"package.json",
"README.md"
],
"exports": {
".": {
"require": "./lib/vxu-ui.umd.js",
"import": "./lib/vxu-ui.es.js"
}
},
"scripts": {
"bootstrap": "pnpm install -w",
"clean": "pnpm run clean:dist && pnpm run -r --parallel clean",
"clean:lib": "rimraf node_modules",
"clean:dist": "rimraf dist",
"docs:dev": "pnpm run -C packages/docs dev",
"docs:build": "pnpm run -C packages/docs build",
"vxu:build": "pnpm run -C packages/vxu-ui build",
"vxu:pub": "pnpm publish --registry https://registry.npmjs.org",
"prepare": "husky install",
"lint:eslint": "eslint --cache --max-warnings 0 \"**/*.{vue,js,ts,jsx,tsx,md}\" --fix",
"lint:fix": "pnpm run lint:eslint --fix",
"lint:prettier": "prettier --write \"*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnjm/vxu-ui.git"
},
"author": "cnjm",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnjm/vxu-ui/issues"
},
"homepage": "https://github.com/cnjm/vxu-ui#readme",
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"eslint": "8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-vue": "^9.10.0",
"glob": "^10.2.1",
"husky": "^8.0.3",
"jiti": "^1.18.2",
"lint-staged": "^13.2.0",
"local-pkg": "^0.4.3",
"rollup": "^3.20.6",
"sass": "^1.61.0",
"typescript": "*",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.2.0"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}