forked from neuledge/graph
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 727 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"scripts": {
"build": "turbo build",
"test": "turbo test",
"evals": "turbo evals",
"lint": "turbo lint",
"fix": "turbo fix",
"prepare": "npm run build",
"changeset": "changeset",
"versions": "changeset version",
"release": "npm login && 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/cli": "^2.29.8",
"turbo": "^2.6.3"
},
"packageManager": "pnpm@10.27.0"
}