forked from neuledge/context
-
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) · 840 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 840 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
{
"private": true,
"scripts": {
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"fix": "turbo fix",
"prepare": "npm run build",
"changeset": "changeset",
"versions": "changeset version",
"release": "pnpm build && pnpm -r publish && pnpm tags",
"tags": "pnpm -r exec -- bash -c 'pkg=$(jq -r .name package.json); ver=$(jq -r .version package.json); tag=\"$pkg@$ver\"; if ! git rev-parse \"$tag\" >/dev/null 2>&1; then git tag \"$tag\" && echo \"Tagged $tag\"; fi' && git push --tags"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"turbo": "^2.6.3"
},
"packageManager": "pnpm@10.27.0",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}