generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.37 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
96
97
98
99
100
101
102
103
104
{
"name": "github-actions-cloudflare-pages",
"version": "2.5.0",
"private": true,
"description": "A Github Action to deploy to Cloudflare Pages",
"keywords": [
"actions",
"node",
"setup"
],
"bugs": "https://github.com/andykenward/github-actions-cloudflare-pages/issues",
"repository": {
"type": "git",
"url": "https://github.com/andykenward/github-actions-cloudflare-pages.git"
},
"license": "MIT",
"author": "Andy Kenward <andy@unlike.dev> (https://unlike.dev/)",
"type": "module",
"exports": "./dist/deploy/index.js",
"scripts": {
"act:d": "act -j delete --secret-file .env",
"all": "pnpm run codegen && pnpm run codegen:events && pnpm run tsc:ls && pnpm run format && pnpm run lint:ls && pnpm run test && pnpm run build",
"build": "rm -rf ./dist/* && node ./esbuild.config.js",
"changeset": "changeset",
"codegen": "graphql-codegen-esm --config graphql.config.ts",
"codegen:events": "tsx bin/codegen/index.ts",
"codegen:watch": "pnpm run codegen --watch",
"deployments:delete": "tsx bin/deployments/index.ts",
"download": "tsx bin/download/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:debug": "pnpm run lint --debug",
"lint:fix": "pnpm run lint --fix",
"lint:ls": "DEBUG=eslint:cli-engine pnpm run lint",
"release": "pnpm run all && changeset publish",
"start": "node -r dotenv/config ./dist/index.js",
"test": "vitest run",
"test:ci": "vitest run --reporter=github-actions",
"test:watch": "vitest",
"tsc:check": "tsc --noEmit --checkJs",
"tsc:ls": "pnpm run tsc:check --listFilesOnly",
"tsc:types": "pnpm run codegen && pnpm run codegen:events && pnpm run tsc:ls",
"tsc:watch": "pnpm run tsc:check --watch",
"version": "changeset version"
},
"dependencies": {
"@actions/core": "1.11.1",
"@octokit-next/core": "2.8.0",
"@octokit/plugin-paginate-rest": "11.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@cloudflare/types": "6.29.1",
"@eslint/js": "9.20.0",
"@graphql-codegen/cli": "5.0.4",
"@graphql-codegen/client-preset": "4.6.1",
"@graphql-typed-document-node/core": "3.2.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@octokit/graphql-schema": "15.25.0",
"@octokit/webhooks-schemas": "7.6.1",
"@octokit/webhooks-types": "7.6.1",
"@total-typescript/ts-reset": "0.6.1",
"@tsconfig/node20": "20.1.4",
"@types/json-schema": "7.0.15",
"@types/node": "20.17.16",
"@vitest/eslint-plugin": "1.1.26",
"dotenv": "16.4.7",
"esbuild": "0.25.0",
"eslint": "9.20.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"graphql": "16.10.0",
"graphql-tag": "2.12.6",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.8",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"undici": "7.3.0",
"vitest": "3.0.5",
"wrangler": "^3.107.2"
},
"peerDependencies": {
"wrangler": "^3.107.2"
},
"packageManager": "pnpm@10.2.1",
"engines": {
"node": "^20.11.0",
"pnpm": "10.2.1"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@cloudflare/types@6>react": "17"
},
"ignoreMissing": [
"react"
]
}
}
}