generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "github-script-action",
"version": "0.2.2",
"description": "GitHub Action for running inline JavaScript snippets",
"author": "Lyra Naeseth <[email protected]>",
"license": "MIT",
"keywords": [
"actions"
],
"type": "module",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc && rm -fr dist && vite build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"prepack": "npm run build",
"test": "true",
"all": "npm run build && npm run format-check && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silverlyra/script-action.git"
},
"files": [
"/dist",
"action.yml"
],
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.1.0",
"@actions/io": "^1.1.3",
"@octokit/core": "^4.2.0",
"@octokit/plugin-paginate-rest": "^6.1.0",
"@octokit/plugin-rest-endpoint-methods": "^7.1.0",
"@octokit/webhooks-types": "^6.11.0",
"chalk": "^4.1.2",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/node": "^18.15.13",
"@typescript-eslint/parser": "^5.59.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.38.0",
"eslint-plugin-github": "^4.7.0",
"js-yaml": "^4.1.0",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vite-plugin-dts": "^2.3.0"
}
}