generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.02 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "typescript-action",
"description": "GitHub Actions TypeScript template",
"bin": {
"template": "./bin/get-oneflow"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json",
"/action.yml",
"/tsconfig.json",
"/oclif.sh"
],
"version": "0.3.0",
"author": "",
"private": true,
"homepage": "https://github.com/actions/typescript-action",
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"bugs": {
"url": "https://github.com/actions/typescript-action/issues"
},
"keywords": [
"actions",
"node",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts && prettier --write src/utils/benchmark.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package-main": "ncc build --minify -o dist src/main.ts",
"package": "concurrently 'npm:package-*'",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"fast": "npm run build && npm run package && npm test",
"test-ssh": "npm run build && TEST_SSH=1 npm run test -- __tests__/ssh.test.ts",
"test-cuda": "TEST_MANYLINUX='1' npm run test -- __tests__/cuda.test.ts",
"test-hash": "npm run build && npm run test -- __tests__/hash.test.ts",
"pub": "rm -rf dist && rm -rf lib && npm run all && git add . && git commit -m publishing && git push",
"command-build": "shx rm -rf lib && tsc -b",
"command-run": "bash +x oclif.sh",
"command-pack": "npm run command-build && oclif manifest && oclif readme && oclif pack tarballs && shx rm -f oclif.manifest.json",
"command-test": "tar -zxvf dist/*linux-x64.tar.gz && ./get-oneflow/bin/get-oneflow build --help && rm -rf get-oneflow/"
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.0.0",
"@actions/core": "^1.5.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.2.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"ali-oss": "^6.16.0",
"cli-table3": "^0.6.0",
"dockerode": "^3.3.0",
"js-yaml": "^4.1.0",
"node-ssh": "^12.0.0",
"ssh2-sftp-client": "^7.0.4",
"ts-node": "^10.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/ali-oss": "^6.0.10",
"@types/chai": "^4",
"@types/dockerode": "^3.2.7",
"@types/jest": "^29.5.6",
"@types/js-yaml": "^4.0.3",
"@types/node": "^20.8.8",
"@types/semver": "^7.3.8",
"@types/ssh2": "^1.11.15",
"@types/ssh2-sftp-client": "^9.0.2",
"@types/ssh2-streams": "^0.1.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/ncc": "^0.38.1",
"concurrently": "^6.2.1",
"eslint": "^8.52.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"make-coverage-badge": "^1.2.0",
"oclif": "^2",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"oclif": {
"bin": "get-oneflow",
"dirname": "get-oneflow",
"commands": "./lib/commands",
"helpClass": "./lib/commands-help",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " "
}
}