forked from iCrawl/action-tsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 784 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 784 Bytes
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
{
"name": "action-tsc",
"version": "1.0.0",
"description": "Typescript compiler action",
"main": "dist/main.js",
"author": "iCrawl <icrawltogo@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run lint",
"build": "ncc build src/main.ts --minify",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@types/ws": "^8.5.4",
"path": "^0.12.7",
"@rbxts/compiler-types": "^2.1.1-types.0",
"@types/node": "^14.14.11",
"@zeit/ncc": "^0.22.3",
"rbxts-transformer-flamework": "=1.0.0-beta.23",
"roblox-ts": "^2.1.1",
"typescript": "^4.9.4"
},
"devDependencies": {
},
"eslintConfig": {
"extends": "marine/prettier/node"
}
}