-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 971 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
{
"name": "setup-oss-cad-suite",
"version": "3.0.0",
"license": "ISC",
"private": true,
"description": "Setup the YosysHQ OSS CAD Suite",
"main": "lib/main.js",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license license.txt",
"all": "npm run build && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YosysHQ/setup-oss-cad-suite"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@actions/http-client": "^2.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"typescript": "^5.3.3"
}
}