-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 926 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
{
"version": "1.0.0",
"name": "node-env",
"main": "./dist/index.js",
"module": "src/index.ts",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"dev": "bun --bun run ./src/index.ts",
"dev:install": "bun --bun run ./src/index.ts install",
"dev:use": "bun --bun run ./src/index.ts use",
"dev:auto": "bun --bun run ./src/index.ts auto",
"build": "bun --bun run ./scripts/build.ts",
"postbuild": "bun run ./scripts/shebang.ts && (chmod +x ./dist/index.cjs || echo 'chmod not supported')",
"check": "biome check .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/yargs": "^17.0.33",
"npm-dts": "1.3.13"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"tslog": "4.9.3",
"yargs": "17.7.2"
},
"files": ["dist/*"]
}