-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 859 Bytes
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
{
"name": "sb3-types",
"module": "index.ts",
"type": "module",
"version": "0.1.16",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": {
"default": "./dist/mod.mjs",
"types": "./dist/mod.d.ts"
},
"./enum": {
"default": "./dist/enums/index.mjs",
"types": "./dist/enums/index.d.ts"
}
},
"scripts": {
"publish:jsr": "jsr publish",
"format": "biome format",
"lint": "biome lint",
"check:ts": "tsc --noEmit",
"check": "bun run lint && bun run check:ts",
"format:fix": "biome format --fix"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/bun": "latest",
"jsr": "^0.12.4",
"tsdown": "^0.20.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"repository": {
"url": "https://github.com/pnsk-lab/sb3-types"
}
}