generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 992 Bytes
/
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
{
"name": "action-typescript",
"version": "1.1.0",
"description": "GitHub Actions TypeScript template",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"dev": "ts-node-dev --respawn src/index.ts"
},
"keywords": [
"actions",
"node",
"github",
"typescript"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/austenstone/action-typescript.git"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/types": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}