-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 782 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 782 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
{
"name": "threadmark",
"version": "1.0.2",
"module": "index.ts",
"type": "module",
"license": "MIT",
"author": {
"name": "Chris Cheney",
"email": "chris@cheney.dev",
"url": "https://www.cheney.dev"
},
"scripts": {
"build": "bun run scripts/build.ts",
"dev": "bun run scripts/build.ts --watch",
"bump": "bun run scripts/bump.ts",
"package": "bun run scripts/build.ts && bun run scripts/package.ts",
"release": "bun run scripts/bump.ts patch && bun run package",
"check": "biome check .",
"fix": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/bun": "1.3.3",
"@types/chrome": "^0.1.31"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"idb": "^8.0.3"
}
}