-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "open-in-codeflow",
"type": "module",
"version": "0.1.2",
"private": true,
"packageManager": "pnpm@8.2.0",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/open-in-codeflow#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/open-in-codeflow.git"
},
"bugs": "https://github.com/antfu/open-in-codeflow/issues",
"scripts": {
"lint": "eslint .",
"release": "bumpp -x \"node bump.js\" --all"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@antfu/ni": "^0.21.3",
"@antfu/utils": "^0.7.2",
"@types/node": "^18.15.11",
"bumpp": "^9.1.0",
"eslint": "^8.38.0",
"esno": "^0.16.3",
"lint-staged": "^13.2.1",
"pnpm": "^8.2.0",
"rimraf": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.2.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}