forked from Gozala/typescript-error-reporter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 848 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
{
"name": "typescript-error-reporter-action",
"version": "1.0.0",
"main": "dist/index.js",
"author": "andoshin11 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gozala/typescript-error-reporter-action.git"
},
"bugs": {
"url": "https://github.com/gozala/typescript-error-reporter-action/issues"
},
"homepage": "https://github.com/gozala/typescript-error-reporter-action#readme",
"scripts": {
"start": "npx @vercel/ncc run ./src/index.ts",
"build": "npx @vercel/ncc build src/index.ts",
"watch": "tsc -w",
"clean": "rm -rf lib && rm -rf dist",
"test:type": "tsc --noEmit --incremental false"
},
"devDependencies": {
"@types/node": "^20.3.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@actions/core": "^1.9.1"
}
}