-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1009 Bytes
/
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
{
"name": "lint-config",
"type": "module",
"license": "MIT",
"private": true,
"author": "qmhc",
"scripts": {
"build:all": "tsx scripts/build-all.ts",
"lint": "eslint --fix .",
"prettier": "prettier --write \"**/*.{js,cjs,ts,json,md}\"",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/types": "^19.0.3",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.6",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"@vexip-ui/scripts": "^1.1.4",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"husky": "^9.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"prettier": "^3.2.4",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tsx": "^4.7.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"stylelint",
"@csstools/*"
]
}
}
}