-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) 路 825 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) 路 825 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
{
"name": "bundle-roc-library",
"version": "0.3.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": {
"@biomejs/biome": "^2.5.11",
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.45.0",
"prettier": "^3.0.0",
"rumdl": "^0.2.62",
"typescript": "^6.0.0"
}
}