forked from yumin-chen/schemascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 937 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 937 Bytes
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
{
"name": "@artefacto/schemascript",
"type": "module",
"private": false,
"version": "0.0.3",
"module": "./dist/artefact/schemascript/index.js",
"types": "./dist/artefact/schemascript/index.d.ts",
"bin": {
"@artefacto/schemascript": "./dist/main.js"
},
"exports": {
".": "./dist/artefact/schemascript/index.js"
},
"files": [
"dist"
],
"scripts": {
"fix": "bun run check",
"check": "bun x --bun @biomejs/biome check --fix .",
"format": "bun x --bun @biomejs/biome format --fix .",
"lint": "bun x --bun @biomejs/biome lint --fix .",
"build": "bun run scripts/build.ts && bun x tsc",
"start": "bun run src/main.ts"
},
"engines": {
"node": ">=0.0.0",
"bun": ">=1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "^1.3.10"
},
"peerDependencies": {
"typescript": "^5.9.3",
"bun": "^1.3.10",
"drizzle-kit": "^0.31.9"
},
"dependencies": {
"drizzle-orm": "^0.45.1"
}
}