-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 885 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 885 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
{
"name": "sourcemaps",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=@faststats/sourcemap-uploader-plugin",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"ci": "turbo run lint check-types test build",
"ci:version": "changeset version && bun update",
"ci:publish": "changeset publish && cd packages/bundler-plugin && bun publish --access public && changeset tag"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"prettier": "^3.8.1",
"turbo": "^2.8.12",
"typescript": "5.9.3",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
]
}