-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
45
46
47
48
{
"name": "betterconf",
"version": "1.0.0",
"description": "[*].conf to [*].ts",
"license": "MIT",
"author": "Christophe Ribeiro <[email protected]>",
"homepage": "https://github.com/christoribeiro/betterconf#readme",
"type": "module",
"main": "dist/cli.js",
"module": "src/cli.ts",
"types": "dist/cli.d.ts",
"files": ["dist/*.js", "dist/*.d.ts"],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build --target=node ./src/cli.ts --outfile=dist/cli.js && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"prebuild": "bun run test",
"postbuild": "rm -f tsconfig.types.tsbuildinfo",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "biome check --write .",
"publish": "npm publish --access public",
"prepublish": "bun run build"
},
"dependencies": {
"@drizzle-team/brocli": "^0.11.0",
"@pushcorn/hocon-parser": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.2",
"bun-types": "^1.1.38",
"typescript": "^5.7.2",
"ultracite": "^4.1.8",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "[email protected]:christoribeiro/betterconf.git"
},
"bugs": {
"url": "https://github.com/christoribeiro/betterconf/issues"
},
"keywords": ["cli", "config", "Hocon", "Node.js", "TypeScript", "JavaScript"]
}