-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 883 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
{
"name": "ai-twitter-filter",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.10",
"engines": {
"bun": ">=1.3.10"
},
"trustedDependencies": [],
"scripts": {
"build": "bun scripts/build.mjs",
"release": "bun scripts/release.mjs",
"dev": "bun scripts/build.mjs --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "bun run typecheck && bun run test && bun run format:check && bun run build"
},
"dependencies": {
"effect": "^3.19.0",
"preact": "^10.28.0"
},
"devDependencies": {
"@types/chrome": "^0.1.36",
"@types/node": "^22.0.0",
"esbuild": "^0.25.0",
"jsdom": "^26.0.0",
"prettier": "^3.6.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}