-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "dev-guides",
"version": "1.0.0",
"private": true,
"description": "A collection of normal dev guides",
"keywords": [
"npm global",
"npm without sudo",
"dev guides"
],
"homepage": "[email protected]:hyperse-io/dev-guides.git",
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/dev-guides.git"
},
"author": {
"name": "Yingchun Tian",
"url": "https://github.com/hyperse-io/dev-guides"
},
"type": "module",
"files": [
"./templates/**/*",
"./dist/"
],
"scripts": {
"cz": "cz",
"prepare": "yarn husky",
"lint": "eslint .",
"lint-staged-files": "lint-staged --allow-empty"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@hyperse/eslint-config-hyperse": "^1.2.7",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.15.0",
"husky": "9.1.7",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}