-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"version": "0.90.15",
"name": "wundergraph-env",
"license": "Apache-2.0",
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"repository": {
"type": "https",
"url": "https://github.com/wundergraph/wundergraph"
},
"homepage": "https://wundergraph.com",
"scripts": {
"boot": "pnpm install --filter='!./packages/*-testapp' --ignore-scripts",
"build": "pnpm -r run --filter='!./packages/*-testapp' build",
"test": "pnpm run -r test",
"changeset:add": "pnpm changeset",
"format": "prettier --write --loglevel silent --end-of-line=auto \"./**/*.{cjs,js,jsx,ts,tsx,html,css,json}\" --ignore-path .gitignore",
"changeset": "changeset",
"codegen": "pnpm run --filter='./packages/protobuf' build",
"changeset:check": "changeset status --since-main",
"ci:version": "pnpm changeset version && pnpm ci:version:install",
"ci:version:install": "pnpm install --filter='!./packages/*-testapp' --no-frozen-lockfile --ignore-scripts",
"ci:publish": "pnpm changeset publish",
"enter-next": "pnpm changeset pre enter next",
"exit-next": "pnpm changeset pre exit",
"current-tag": "svu current",
"engine:release": "release-it --git.requireBranch=main",
"engine:release-next": "release-it --git.requireBranch=next --preRelease=next"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0"
},
"release-it": {
"dry-run": false,
"git": {
"tagMatch": "[!@]*",
"tagName": "v${version}",
"requireCleanWorkingDir": true
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "pnpm ci:version:install"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/wunderctl/package.json",
"path": "version"
}
]
}
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@release-it/bumper": "^4.0.0",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"rimraf": "^3.0.2"
}
}