-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
58 lines (58 loc) · 1.83 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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/*"
],
"scripts": {
"clean": "git clean -Xdf",
"all": "turbo run --ui tui build generate test lint attw bundle-size format license-header bootstrap:inject bootstrap:wkt",
"setversion": "node scripts/set-workspace-version.js",
"postsetversion": "npm run all",
"release": "npm run all && node scripts/release.js",
"format": "prettier --write --ignore-unknown '.' '!packages' '!.turbo' '!node_modules'",
"license-header": "license-header --ignore 'packages/**'",
"lint": "eslint --max-warnings 0 . --ignore-pattern 'packages/**'"
},
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=18",
"npm": ">=9"
},
"packageManager": "[email protected]",
"licenseHeader": {
"licenseType": "apache",
"yearRange": "2021-2024",
"copyrightHolder": "Buf Technologies, Inc."
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@bufbuild/license-header": "^0.0.4",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"//": "avoid hoisting of @typescript/vfs, see packages/protoplugin/src/transpile.ts",
"dependencies": {
"@typescript/vfs": "1.0.0"
}
}