-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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
{
"name": "@codehz/draw-call",
"module": "src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/codehz/draw-call.git"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js --quiet",
"lint:fix": "eslint --ext .ts,.tsx,.js --fix",
"format": "prettier --write .",
"test": "bun test",
"release": "bun scripts/release.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@fontpkg/unifont": "^15.0.1",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"tsdown": "^0.20.1"
},
"peerDependencies": {
"typescript": "^5"
},
"optionalDependencies": {
"@napi-rs/canvas": "^0.1.88"
},
"version": "0.5.2"
}