-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.53 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
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
87
88
89
90
91
92
93
94
95
{
"name": "@s0/ghcommit",
"version": "1.2.1",
"private": false,
"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": "https://github.com/s0/ghcommit.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core.mjs",
"require": "./dist/core.js",
"types": "./dist/core.d.ts"
},
"./fs": {
"import": "./dist/fs.mjs",
"require": "./dist/fs.js",
"types": "./dist/fs.d.ts"
},
"./git": {
"import": "./dist/git.mjs",
"require": "./dist/git.js",
"types": "./dist/git.d.ts"
},
"./node": {
"import": "./dist/node.mjs",
"require": "./dist/node.js",
"types": "./dist/node.d.ts"
}
},
"scripts": {
"build": "rm -rf dist && pnpm codegen:github && tsc --noEmit && tsup",
"codegen:github": "graphql-codegen --config src/github/codegen.ts",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint . --max-warnings 0",
"test:integration": "jest --config jest.integration.config.cjs"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@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/eslint": "^8.56.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-only-warn": "^1.1.0",
"jest": "^29.7.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.3.3"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"dependencies": {
"isomorphic-git": "^1.27.1"
}
}