-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 920 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
35
{
"name": "oasis",
"description": "Onboarding/Offboarding Automation System",
"author": "Angel Adames <[email protected]>",
"main": "dist/cli.js",
"module": "cli.ts",
"type": "module",
"private": true,
"bin": {
"dems": "./dist/cli.js"
},
"scripts": {
"build": "bun build --target=bun ./cli.ts --outdir dist/",
"compile": "bun build --compile ./cli.ts --outfile ./dems",
"format": "biome format src/",
"format:fix": "biome format src/ --write",
"lint": "biome lint src/",
"lint:fix": "biome lint src/ --apply",
"check": "biome check src/",
"check:fix": "biome check src/ --apply",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"bun-types": "^1.0.32",
"chalk": "^5.3.0",
"commander": "^12.0.0"
}
}