-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 936 Bytes
/
package.json
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
{
"name": "@trey.turner/ts-artifacts",
"private": "true",
"type": "module",
"workspaces": ["packages/*"],
"repository": {
"type": "git",
"url": "https://github.com/treyturner/ts-artifacts.git"
},
"scripts": {
"build": "bun run --silent --filter \"*\" build",
"check": "bun run --silent --filter \"*\" check",
"check:fix": "bun run --silent --filter \"*\" check:fix",
"clean": "bun run --silent clean:build && bun run --silent clean:deps",
"clean:build": "bun run --silent --filter \"*\" clean:build",
"clean:deps": "rm -rf node_modules bun.lockb && bun run --silent --filter \"*\" clean:deps",
"prepare": "husky",
"watch": "bun run --filter \"*\" watch"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"husky": "9.1.6"
},
"trustedDependencies": ["@biomejs/biome", "counterfact"]
}