-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 799 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
{
"name": "weave-extension",
"version": "1.1.0",
"private": true,
"scripts": {
"clean": "bun run scripts/clean.ts",
"build": "NODE_ENV=production bun run scripts/build.ts",
"build:dev": "NODE_ENV=development bun run scripts/build.ts",
"dev": "chokidar \"src/**/*\" -c \"bun run build:dev\" --initial",
"format": "bunx @biomejs/biome format --write .",
"lint": "bunx @biomejs/biome check --write .",
"check": "bunx @biomejs/biome check .",
"check:staged": "bunx @biomejs/biome check --changed",
"test": "bun test",
"typecheck": "tsc --build"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@types/chrome": "^0.2.7",
"bun-types": "^1.4.0",
"chokidar-cli": "^3.0.0",
"picocolors": "^1.1.1",
"typescript": "^7.0.2"
}
}