-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "@paperspace/deploy-action",
"version": "0.0.0",
"description": "Paperspace Deployment Action",
"author": {
"name": "Paperspace Engineering",
"url": "https://paperspace.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Paperspace/deploy-action.git"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"compile": "ncc build lib --license licenses.txt",
"build": "tsc && pnpm compile",
"check-types": "tsc --noEmit",
"lint": "eslint . --fix",
"generate:api": "npx openapi-typescript https://api.paperspace.com/v1/openapi.json --output src/api.ts"
},
"devDependencies": {
"@swc/core": "^1.3.38",
"@tsconfig/node18": "^1.0.1",
"@types/config": "^0.0.39",
"@types/node": "18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"openapi-typescript": "^6.1.1",
"pino-pretty": "^9.2.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"wait-on": "^7.0.1"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"dayjs": "^1.11.7",
"jsonc": "^2.0.0",
"node-fetch": "^3.3.0",
"object-hash": "^3.0.0",
"openapi-typescript-fetch": "^1.1.3",
"toml": "^3.0.0",
"yaml": "^2.2.1"
}
}