-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 986 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
{
"name": "arcw-action",
"version": "0.1.0",
"description": "A GitHub action to run arcw and display the results.",
"repository": "github:algorandfoundation/arcw-action",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node20 --outfile=dist/index.js && shx cp node_modules/arcw-lint-js/arcw_lint_js_bg.wasm dist && echo { \"type\": \"commonjs\" } > dist/package.json",
"test": "prettier --check src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@octokit/plugin-throttling": "^4.1.0",
"@octokit/webhooks-types": "^6.2.2",
"arcw-lint-js": "^0.1.15",
"tr46": "^3.0.0"
},
"devDependencies": {
"esbuild": "0.15.5",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=20"
}
}