-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 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
{
"name": "@any-design/anyui",
"version": "0.4.0",
"author": "any-design",
"description": "A cute UI components library for Vue 3",
"files": [
"lib",
"styles"
],
"maintainers": [
{
"name": "backrunner",
"url": "https://github.com/backrunner"
}
],
"keywords": [
"vue",
"vue3",
"ui",
"library",
"cute"
],
"homepage": "https://github.com/any-design/anyui",
"repository": {
"type": "git",
"url": "https://github.com/any-design/anyui.git"
},
"scripts": {
"new": "node ./scripts/new.js",
"start": "npm run dev",
"dev": "cross-env BUILD_TARGET=TESTGROUND vite",
"clean": "rimraf ./lib && rimraf ./styles",
"build": "vue-tsc --noEmit && cross-env BUILD_TARGET=LIBRARY vite build && cross-env BUILD_TARGET=RESOLVER vite build",
"dist": "npm run lint && npm run clean && npm run build && node ./scripts/afterBuild.js",
"build:after": "node ./scripts/afterBuild.js",
"build:testground": "npm run lint && rimraf ./dist-testground && cross-env BUILD_TARGET=TESTGROUND vite build",
"serve": "vite preview",
"lint": "eslint --ext .vue,.ts src/ --config .eslintrc.js",
"lint-fix": "eslint --fix --ext .vue,.ts src/ --config .eslintrc.js"
},
"main": "lib/anyui.js",
"module": "lib/anyui.js",
"types": "lib/src/index.d.ts",
"sideEffects": false,
"license": "MIT",
"dependencies": {
"async-validator": "^4.2.5",
"color": "^4.2.3",
"mitt": "^3.0.1",
"vue": "^3.4.27"
},
"optionalDependencies": {
"@iconify/vue": "^4.1.2",
"@popperjs/core": "^2.11.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@types/color": "^3.0.6",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"ejs": "^3.1.10",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.6",
"prettier": "^3.3.1",
"rimraf": "^3.0.2",
"sass": "^1.77.4",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-gfont": "^0.2.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^1.8.27"
}
}