-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 808 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 808 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
{
"name": "@chargebee/js-framework-adapters",
"repository": "https://github.com/chargebee/js-framework-adapters",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.18.1",
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "22.15.2",
"typescript": "^5.9.2"
},
"scripts": {
"prebuild": "pnpm clean",
"build": "pnpm -r build",
"watch": "pnpm -r watch",
"link:all": "for p in packages/*; do pushd $p; npm link; popd; done",
"unlink:all": "for p in packages/*; do pushd $p; npm unlink --global --link; popd; done",
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo",
"lint": "biome check",
"format": "biome format"
}
}