-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
43
44
45
46
47
48
49
50
{
"name": "protobuf-es",
"private": true,
"workspaces": [
"packages/protobuf",
"packages/protoc-gen-es",
"packages/protoplugin",
"packages/protoplugin-test",
"packages/protoplugin-example",
"packages/protobuf-test",
"packages/protobuf-conformance",
"packages/bundle-size",
"packages/protobuf-example",
"packages/upstream-protobuf",
"packages/typescript-compat/*",
"deno/conformance",
"bun/conformance"
],
"scripts": {
"clean": "git clean -Xdf",
"all": "turbo run --ui tui build generate test lint attw bundle-size format license-header bootstrap",
"setversion": "node scripts/set-workspace-version.js",
"postsetversion": "npm run all",
"release": "npm run all && node scripts/release.js",
"format": "biome format --write --config-path biome.json",
"license-header": "license-header --ignore 'packages/**'",
"lint": "biome lint --error-on-warnings --config-path biome.json",
"postinstall": "node scripts/nohoist.js --check"
},
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=20",
"npm": ">=10"
},
"packageManager": "npm@10.9.0",
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2021-2026",
"copyrightHolder": "Buf Technologies, Inc."
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^1.9.4",
"@bufbuild/license-header": "^0.0.4",
"@types/node": "^25.0.3",
"turbo": "^2.8.12",
"typescript": "^5.9.2"
}
}