-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "mediathequeroubaix",
"version": "0.1.4",
"description": "CLI for the library of Roubaix (Médiathèque Roubaix)",
"keywords": ["cli", "mediathequeroubaix"],
"author": "Thomas Queste <[email protected]> (https://www.tomsquest.com/)",
"homepage": "https://github.com/tomsquest/mediathequeroubaix.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomsquest/mediathequeroubaix.ts.git"
},
"type": "module",
"bin": "dist/index.js",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"files": ["dist"],
"dependencies": {
"composable-functions": "^4.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/node22": "22.0.0",
"@types/bun": "1.1.13",
"bun-types": "1.1.34",
"rimraf": "5.0.10",
"typescript": "5.6.3"
},
"scripts": {
"clean": "rimraf .cache dist",
"test": "bun test",
"check": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --error-on-warnings && tsc --noEmit",
"fix": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --error-on-warnings --fix && tsc --noEmit",
"build": "bun build ./src/index.ts --outdir dist --target node --format esm --minify",
"prepublishOnly": "bun run clean && bun run build"
}
}