-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "yite-cli",
"version": "3.6.2",
"description": "专注于vite + vue3 的项目开发脚手架",
"main": "./index.js",
"module": "./index.js",
"exports": {
"./*": "./*"
},
"bin": {
"yite": "./yite-cli.js"
},
"type": "module",
"private": false,
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "vitest --dir lib",
"test-ui": "vitest --ui --dir lib",
"lint": "eslint .",
"fix": "eslint . --fix",
"format": "prettier --write .",
"inspect": "eslint --inspect-config"
},
"repository": {
"type": "git",
"url": "https://github.com/chenbimo/yite-cli"
},
"homepage": "https://chensuiyi.me",
"keywords": [
"vite",
"vue.js",
"vue-cli",
"webpack",
"cli",
"vue",
"web",
"脚手架"
],
"files": [
"libs/",
"plugins/",
"scripts/",
"index.js",
"LICENSE",
"package.json",
"README.md",
"unocss.js",
"utils.js",
"vite.config.js",
"yite-cli.js"
],
"author": "chensuiyi <[email protected]>",
"dependencies": {
"@unocss/transformer-compile-class": "^0.63.4",
"@unocss/transformer-directives": "^0.63.4",
"@unocss/transformer-variant-group": "^0.63.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vue-macros/reactivity-transform": "^1.1.1",
"cli4state": "^1.0.1",
"fs-extra": "^11.2.0",
"merge-anything": "^6.0.2",
"pacote": "^19.0.0",
"portfinder": "^1.0.32",
"rollup-plugin-visualizer": "^5.12.0",
"unocss": "^0.63.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vite-plugin-vue-devtools": "^7.4.6",
"vue-i18n": "^10.0.4"
}
}