-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.22 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
{
"name": "@aiou/mario-template",
"version": "0.0.0",
"description": "mario generator template",
"keywords": [
"neo",
"mario",
"template"
],
"license": "MIT",
"homepage": "https://github.com/neo-hack/mario-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neo-hack/nario-template.git"
},
"bugs": {
"url": "https://github.com/neo-hack/nario-template/issues",
"email": "jiangweixian1994@gmail.com"
},
"author": {
"name": "JW",
"email": "jiangweixian1994@gmail.com",
"url": "https://twitter.com/jiangweixian"
},
"main": "lib/index.yaml",
"scripts": {
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json}": [
"eslint --fix"
]
},
"devDependencies": {
"@aiou/eslint-config": "^0.5.1",
"@changesets/cli": "latest",
"eslint": "^8.23.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"typescript": "^4.8.3"
}
}