-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@codehz/draw-call",
"version": "0.6.0",
"type": "module",
"main": "./dist/node/index.cjs",
"module": "./dist/node/index.mjs",
"types": "./dist/node/index.d.mts",
"exports": {
".": {
"browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js",
"require": "./dist/browser/index.cjs"
},
"bun": {
"types": "./dist/node/index.d.mts",
"import": "./dist/node/index.mjs"
},
"types": "./dist/node/index.d.mts",
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.cjs"
}
},
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"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": "^1.3.13",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^10.3.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"tsdown": "^0.22.0"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"optionalDependencies": {
"@napi-rs/canvas": "^1.0.0"
}
}