generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 3.27 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
{
"name": "setup-agda",
"version": "2.4.0",
"private": true,
"description": "Set up a specific version of Agda.",
"author": "Wen Kokke",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16"
},
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.6.0",
"@inquirer/checkbox": "^0.0.30-alpha.0",
"@inquirer/core": "^0.0.30-alpha.0",
"@inquirer/select": "^0.0.29-alpha.0",
"commander": "^9.5.0",
"ensure-error": "^4.0.0",
"execa": "^6.1.0",
"inquirer": "^9.1.4",
"line-by-line": "^0.1.6",
"linux-os-info": "^2.0.0",
"linux-release-info": "^3.0.0",
"macos-release": "^3.1.0",
"node-fetch": "^2.6.7 && <3",
"object.pick": "^1.3.0",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"semver": "^7.3.8",
"setup-haskell": "file:./vendor/haskell-actions/setup",
"tmp": "^0.2.1",
"which": "^3.0.0",
"windows-release": "^5.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wenkokke/setup-agda.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"scripts": {
"agdaup": "npm run check-cli && npm run build-cli && node ./dist/cli.cjs",
"all": "npm run build && npm run format && npm run lint",
"prebuild": "npm run bundle-data && npm run check",
"build": "npm run build-action && npm run build-cli && npm run build-readme",
"build-action": "node ./scripts/build-action.mjs",
"build-cli": "node ./scripts/build-cli.mjs",
"build-cli-exe": "npm run build-cli && node ./scripts/build-cli-exe.mjs",
"build-readme": "node ./scripts/build-readme.mjs",
"bundle-data": "node ./scripts/bundle-licenses.mjs && sh ./scripts/bundle-data.sh",
"check": "npm run check-action && npm run check-cli",
"check-action": "tsc -noEmit -p ./tsconfig-action.json",
"check-cli": "tsc -noEmit -p ./tsconfig-cli.json",
"format": "prettier --write './scripts/*.mjs' '**/*.ts' '**/*.json' '**/*.yml'",
"lint": "eslint **/*.ts",
"pretest": "npm run all",
"test": "npm run test-setup-latest && npm run test-build-latest",
"test-build-latest": "sh ./scripts/test-action.sh build-latest",
"test-setup-latest": "sh ./scripts/test-action.sh setup-latest"
},
"devDependencies": {
"@actions/cache": "^3.1.2",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.0",
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
"@types/line-by-line": "^0.1.6",
"@types/mute-stream": "^0.0.1",
"@types/node": "^18.11.17",
"@types/node-fetch": "^2.6.2",
"@types/nunjucks": "^3.2.1",
"@types/object.pick": "^1.3.2",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.3",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"esbuild": "^0.16.16",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"js-yaml": "^4.1.0",
"markdown-table": "^3.0.3",
"nunjucks": "^3.2.3",
"pkg": "^5.8.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"bin": "./lib/cli.js"
}