-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@cigale/beamup",
"version": "0.6.5",
"description": "Typed client to send corrections to a CIGALE BeamUp server",
"license": "MIT",
"homepage": "https://github.com/cigaleapp/beamup",
"repository": {
"type": "git",
"url": "https://github.com/cigaleapp/beamup"
},
"files": [
"dist",
"package.json"
],
"type": "module",
"main": "dist/client.js",
"exports": {
".": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
}
},
"module": "dist/client.js",
"types": "dist/client.d.ts",
"scripts": {
"prepare": "bun run init-dotenv.ts && husky",
"lint": "oxlint",
"format": "prettier --write .",
"check:clutter": "bunx --bun knip",
"migrate": "bun run migrate.ts",
"makemigration": "bunx drizzle-kit generate --name",
"dev": "bun run --watch src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"lint-staged": {
"*.ts": [
"oxlint --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@types/bun": "^1.2.22",
"drizzle-arktype": "^0.1.3",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"husky": "^9.1.7",
"knip": "^5.63.1",
"lint-staged": "^16.1.6",
"nanoid": "^5.1.5",
"oxlint": "^1.16.0",
"prettier": "^3.6.2",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-toml": "^2.0.6"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"arktype": "^2.1.22"
}
}