-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 936 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 936 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
33
34
{
"name": "bundle-roc-library",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action to bundle and release a Roc library.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build --license licenses.txt --out dist/ src/index.ts",
"fix": "eslint --fix src/",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"author": "Hannes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hasnep/bundle-roc-library.git"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.35.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
}
}