generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.14 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
{
"name": "@mscharley/dependency-changesets-action",
"description": "Github Action to publish changesets to dependency update PR's",
"version": "0.0.0-development",
"author": "Matthew Scharley <matt@scharley.me>",
"private": true,
"type": "module",
"homepage": "https://github.com/mscharley/dependency-changesets-action",
"repository": {
"type": "git",
"url": "git+https://github.com/mscharley/dependency-changesets-action.git"
},
"bugs": {
"url": "https://github.com/mscharley/dependency-changesets-action/issues"
},
"keywords": [
"actions",
"node",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"codegen": "graphql-code-generator",
"bundle": "pnpm run codegen && pnpm run package",
"ci-test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"lint": "tsc --noEmit && eslint",
"package": "rollup --config rollup.config.js",
"package:watch": "pnpm run package -- --watch",
"test": "(NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"all": "pnpm run codegen && pnpm run lint && pnpm run test && pnpm run package"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"generic-type-guard": "^5.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-typed-document-node/core": "3.2.0",
"@jest/globals": "29.7.0",
"@mscharley/eslint-config": "4.1.1",
"@mscharley/prettier-config": "3.1.0",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "20.17.12",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"make-coverage-badge": "1.2.0",
"rollup": "4.29.1",
"rollup-plugin-license": "3.5.3",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.15.3+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}