-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
34 lines (34 loc) · 1.22 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
{
"name": "mercurius-typescript",
"version": "1.0.0",
"private": true,
"description": "All the examples are available in the [examples folder](./examples/)",
"homepage": "https://github.com/PabloSzx/mercurius-typescript#readme",
"bugs": {
"url": "https://github.com/PabloSzx/mercurius-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PabloSzx/mercurius-typescript.git"
},
"license": "MIT",
"author": "PabloSz",
"scripts": {
"ci:release": "pnpm pretty && pnpm -r publish --access public --no-git-checks",
"ci:version": "pnpm pretty && changeset version && pnpm i --no-frozen-lockfile --lockfile-only --ignore-scripts && pnpm update -r mercurius-codegen",
"clean": "pnpm dlx rimraf \"**/{node_modules,dist,coverage,.nyc_output}\" pnpm-lock.yaml && pnpm i",
"prepare": "husky install",
"pretty": "prettier --write \"**/*.{ts,json}\"",
"test": "pnpm test --recursive --no-bail --stream"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.0",
"changesets-github-release": "^0.1.0",
"esbuild": "^0.24.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^3.0.2"
}
}