-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 2.12 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
{
"name": "sponsor-gated-support",
"displayName": "Sponsor Gated Support",
"version": "1.0.1",
"description": "A GitHub Action designed to help project maintainers manage support requests in a way that encourages sponsorship and recognizes valuable contributors",
"main": "./build/index.js",
"exports": "./build/index.js",
"type": "module",
"private": true,
"scripts": {
"start": "local-action run . src/index.ts .env",
"build": "npm-run-all --sequential build:*",
"build:reset": "rimraf ./build",
"build:lint": "npx eslint ./src",
"build:ncc": "npx ncc build src/index.ts -o build --source-map --license licenses.txt",
"prepare": "npm run build"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/mrjackyliang/sponsor-gated-support.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mrjackyliang"
},
{
"type": "custom",
"url": "https://liang.nyc/paypal"
}
],
"keywords": [
"actions",
"github-sponsors",
"github-sponsors-action",
"patreon",
"customer-service"
],
"author": {
"name": "Jacky Liang",
"email": "hello@mrjackyliang.com",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjackyliang/sponsor-gated-support/issues"
},
"files": [
"./build"
],
"homepage": "https://github.com/mrjackyliang/sponsor-gated-support",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"json-to-graphql-query": "2.2.5",
"lodash": "4.17.21",
"zod": "3.23.8"
},
"devDependencies": {
"@github/local-action": "1.5.1",
"@types/lodash": "4.17.7",
"@types/node": "22.1.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.29.1",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"typescript": "5.5.4"
}
}