forked from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"name": "modern-typescript-action",
"version": "0.0.0",
"private": true,
"description": "Modern GitHub Action template",
"main": "src/index.ts",
"scripts": {
"lint": "eslint '**/*.ts' --cache --fix",
"test": "jest",
"build": "rimraf dist && esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=node16 --minify --sourcemap && yarn cpy 'dist-reuse/*' dist",
"dev": "yarn test && yarn build && act -j test-run --secret-file .secrets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgioele/modern-typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "1.8.2"
},
"devDependencies": {
"@swc/core": "1.2.197",
"@swc/jest": "0.2.21",
"@types/jest": "28.1.1",
"@types/node": "17.0.40",
"cpy-cli": "4.1.0",
"esbuild": "0.14.43",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-github": "4.3.6",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.1.1",
"js-yaml": "4.1.0",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"typescript": "4.7.3"
},
"packageManager": "yarn@3.2.1"
}