-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.91 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
70
71
{
"name": "@changesets/ghcommit",
"version": "3.0.0-next.1",
"description": "Directly change files on github using the github API, to support GPG signing",
"keywords": [
"actions",
"git",
"github",
"gpg"
],
"license": "MIT",
"author": {
"name": "Sam Lanning",
"url": "https://samlanning.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/changesets/ghcommit.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index-node.d.mts",
"browser": "./dist/index-browser.mjs",
"default": "./dist/index-node.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm codegen:github && tsdown",
"codegen:github": "graphql-codegen --config src/github/codegen.ts",
"typecheck": "tsc",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint",
"test:unit": "vitest",
"test:integration": "vitest -c vitest.integration.config.ts",
"version-packages": "changeset version && pnpm format:fix",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"tinyexec": "^1.2.4"
},
"devDependencies": {
"@actions/github": "^9.1.1",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@graphql-codegen/cli": "^7.2.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^26.1.1",
"fs-fixture": "^2.14.0",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.25.0",
"publint": "^0.3.21",
"tsdown": "^0.22.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"engines": {
"node": "^22.11 || ^24 || >=26"
},
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72"
}