forked from bharatpe/assets-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "assets-check-bot",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/main.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -rf dist",
"build": "ncc build src/main.ts -o dist",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && npm run lint:check",
"lint:check": "biome check ./",
"lint:check:fix": "biome check --apply ./",
"format:fix": "biome format --write ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/immutable/assets-checker.git"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"packageManager": "[email protected]",
"keywords": [],
"author": "immutable/biom3",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/immutable/assets-checker/issues"
},
"homepage": "https://github.com/immutable/assets-checker#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@octokit/rest": "^19.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/node": "^20.12.12",
"@vercel/ncc": "^0.34.0",
"typescript": "^5.4.5"
}
}