forked from catapulta-sh/catapulta-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "catapulta-verify",
"version": "0.1.12",
"author": "@kartojal <[email protected]> (https://catapulta.sh/)",
"repository": "github:catapulta-sh/catapulta-verify",
"main": "./out/index.mjs",
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/chalk": "^2.2.0",
"bun-types": "latest",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"ts-command-line-args": "^2.5.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"bin": {
"catapulta-verify": "./out/index.mjs"
},
"bugs": {
"url": "https://github.com/catapulta-sh/catapulta-verify/issues",
"email": "[email protected]"
},
"files": [
"out/index.mjs"
],
"homepage": "https://github.com/catapulta-sh/catapulta-verify#readme",
"license": "MIT",
"scripts": {
"build": "bun build ./src/index.ts --outfile=out/index.mjs --target node",
"postbuild": "bunx rexreplace '^(#!.+\\n)?' '$1import { createRequire as createImportMetaRequire } from \"module\"; import.meta.require ||= (id) => createImportMetaRequire(import.meta.url)(id);\\n' -GM out/index.mjs",
"lint:fix": "bunx @biomejs/biome check ./ --apply",
"lint": "bunx @biomejs/biome check ./"
}
}