-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 KB
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
{
"name": "sourcemaps",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=@faststats/sourcemap-uploader-plugin && bun run build:proguard-plugin",
"build:proguard-plugin": "bun run --cwd packages/proguard-plugin build",
"sync-proguard-version": "bun scripts/sync-proguard-version.ts",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "tsc --noEmit -p scripts/tsconfig.json && turbo run check-types",
"ci": "turbo run lint check-types test build",
"ci:version": "changeset version && bun update && bun run sync-proguard-version",
"ci:publish": "changeset publish && bun scripts/publish-proguard-plugin.ts"
},
"devDependencies": {
"@types/node": "^25.0.0",
"@biomejs/biome": "2.4.10",
"turbo": "^2.9.3",
"typescript": "6.0.2",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
]
}