-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1007 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
{
"name": "threadmark",
"version": "1.0.4",
"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",
"test": "bun test tests/unit tests/dom",
"test:e2e": "bun run build && playwright test",
"test:e2e:real": "THREADMARK_REAL_CHATGPT_SMOKE=1 bun run test:e2e"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@playwright/test": "^1.61.0",
"@types/bun": "1.3.14",
"@types/chrome": "^0.1.31",
"happy-dom": "^20.10.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"idb": "^8.0.3"
}
}