-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "yibase",
"version": "2.1.0",
"description": "vue3 + vite + yite-cli 基础项目开发模板",
"sideEffects": true,
"type": "module",
"private": false,
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"lint": "eslint ./src",
"fix": "eslint ./src --fix",
"format": "prettier --write .",
"inspect": "eslint --inspect-config",
"dev": "yite --command=dev --envfile=development --mode=development --workdir=./ ",
"build": "yite --command=build --envfile=production --mode=production --workdir=./"
},
"files": [
".vscode",
"public/",
"src/",
".gitignore",
".npmrc",
".prettier",
"index.html",
"jsconfig.json",
"LICENSE",
"package.json",
"README.md",
"yite.config.js"
],
"keywords": [
"lodash",
"utils",
"helper",
"help"
],
"author": "chensuiyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chenbimo/yibase.git"
},
"homepage": "https://chensuiyi.me",
"dependencies": {
"@iconify/json": "^2.2.248",
"axios": "^1.7.7",
"pinia": "^2.2.2",
"sass": "^1.78.0",
"store2": "^2.14.3",
"vue": "^3.5.5",
"vue-i18n": "^10.0.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"yite-cli": "^3.4.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}