-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 968 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
{
"private": true,
"name": "lab-secretaries",
"author": "JacobLinCool <[email protected]> (https://jacoblin.cool)",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"format": "prettier --write --ignore-path .gitignore .",
"test": "vitest"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@types/node": "^20.10.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"tsx": "^4.6.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"vitest": "^0.34.6",
"wrangler": "^3.18.0"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/JacobLinCool/lab-secretaries.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/lab-secretaries/issues"
},
"homepage": "https://jacoblincool.github.io/lab-secretaries",
"packageManager": "[email protected]"
}