-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "snail-uni",
"version": "1.0.0",
"description": "snail-uni - 最佳的uni-app开发模版",
"scripts": {
"postinstall": "simple-git-hooks",
"lint": "npx oxlint && eslint --fix."
},
"homepage": "https://hu-snail.github.io/snail-uni/",
"keywords": [
"snail-uni",
"uni-app"
],
"author": "hu-snail [email protected]",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"docs",
"play",
"create-snail-uni"
],
"repository": {
"type": "git",
"url": "https://github.com/hu-snail/snail-uni.git"
},
"repository-gitee": {
"type": "git",
"url": "https://gitee.com/hu-snail/snail-uni.git"
},
"bugs": {
"url": "https://github.com/hu-snail/snail-uni/issues"
},
"sideEffects": false,
"bin": {
"snail-uni": "bin/snail-uni.js"
},
"nano-staged": {
"*.md": "prettier --write",
"*.{ts,tsx,js,vue,scss}": "prettier --write",
"*.{ts,tsx,js,vue}": "pnpm lint",
"*.{css,scss,vue,html}": "stylelint --fix"
},
"engines": {
"node": ">= 18.0.0",
"pnpm": ">= 8.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged",
"commit-msg": "npx node ./verify-commit.mjs"
},
"devDependencies": {
"@snail-uni/eslint-config": "workspace:*",
"@snail-uni/stylelint-config": "workspace:*",
"eslint": "8.43.0",
"gulp": "^5.0.0",
"nano-staged": "^0.8.0",
"oxlint": "^0.6.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.8.1",
"tsx": "^4.16.2"
},
"dependencies": {
"typescript": "^5.5.3"
}
}