-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.32 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.32 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@changesets/ghcommit",
"version": "2.0.1",
"description": "Directly change files on github using the github API, to support GPG signing",
"keywords": [
"actions",
"github",
"git",
"gpg"
],
"license": "MIT",
"author": {
"name": "Sam Lanning",
"url": "https://samlanning.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/changesets/ghcommit.git"
},
"type": "commonjs",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./core": {
"import": "./dist/core.mjs",
"require": "./dist/core.cjs"
},
"./fs": {
"import": "./dist/fs.mjs",
"require": "./dist/fs.cjs"
},
"./git": {
"import": "./dist/git.mjs",
"require": "./dist/git.cjs"
},
"./node": {
"import": "./dist/node.mjs",
"require": "./dist/node.cjs"
}
},
"scripts": {
"build": "pnpm codegen:github && tsc --noEmit && tsdown",
"codegen:github": "graphql-codegen --config src/github/codegen.ts",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "oxlint",
"test:integration": "vitest -c vitest.integration.config.ts"
},
"devDependencies": {
"@actions/github": "^9.0.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.27.7",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-operations": "^4.0.4",
"@octokit/core": "^6.1.2",
"@octokit/graphql": "^8.1.1",
"@octokit/graphql-schema": "^14.56.0",
"@types/node": "^20.11.24",
"dotenv": "^16.4.5",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"publint": "^0.3.20",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"files": [
"dist"
],
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"publishConfig": {
"access": "public"
},
"dependencies": {
"isomorphic-git": "^1.36.3"
},
"prettier": {}
}