forked from izuiyou/octoflutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 941 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
{
"name": "root",
"private": true,
"packageManager": "[email protected]",
"author": "zuiyou",
"license": "BSD",
"scripts": {
"api": "node scripts/apidoc.js",
"clean": "node scripts/clean.js",
"updv": "node scripts/update_version.js",
"lint": "eslint --ignore-path .eslintignore --fix ./ --ext .ts",
"doc": "node scripts/document.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^10.2.10",
"npm-run-all": "^4.1.5",
"cross-spawn": "^7.0.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=18.12.0"
}
}