-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
35
36
37
38
39
40
41
42
{
"name": "debug-id",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo run build --filter=./packages/*",
"build:watch": "turbo run build --filter=./packages/*",
"test": "turbo run test --filter=./test/*",
"test:node": "turbo run test --filter=./test/node",
"test:browser": "turbo run test --filter=./test/browser",
"lint": "biome check",
"fix": "biome check --write",
"changeset:add": "changeset",
"changeset:consume": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@rspack/cli": "^1.3.15",
"@rspack/core": "^1.3.15",
"@types/node": "^22.15.30",
"esbuild": "^0.25.5",
"parcel": "^2.15.2",
"rolldown": "1.0.0-beta.13",
"rollup": "^4.42.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"workspaces": ["packages/*", "test/*"],
"packageManager": "yarn@1.22.22",
"volta": {
"node": "22.14.0",
"yarn": "1.22.22"
}
}