-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 933 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
{
"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": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.44.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}