-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
72
73
74
{
"name": "@changesets/ghcommit",
"version": "2.1.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": {
".": "./dist/index.mjs",
"./core": "./dist/core.mjs",
"./fs": "./dist/fs.mjs",
"./git": "./dist/git.mjs",
"./node": "./dist/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": {
"isomorphic-git": "^1.36.3"
},
"devDependencies": {
"@actions/github": "^9.0.0",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@graphql-codegen/cli": "^7.1.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.9.1",
"fs-fixture": "^2.14.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"oxlint-tsgolint": "^0.23.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"publint": "^0.3.21",
"tinyexec": "^1.2.4",
"tsdown": "^0.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": "^22.11 || ^24 || >=26"
},
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499"
}