-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
49
50
51
{
"name": "@ronin/syntax",
"version": "0.2.30",
"type": "module",
"description": "Allows for defining RONIN queries and schemas in code.",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
"./schema": "./dist/schema.js",
"./queries": "./dist/queries.js"
},
"typesVersions": {
"*": {
"schema": [
"./dist/schema"
],
"queries": [
"./dist/queries"
]
}
},
"scripts": {
"lint": "bun run --bun lint:tsc && bun run --bun lint:biome",
"lint:biome": "biome check",
"lint:tsc": "tsc --pretty",
"format": "biome check --write && biome format --write",
"test": "bun test",
"build": "tsup",
"dev": "tsup --watch",
"prepare": "bun run build"
},
"keywords": [
"database",
"schema",
"primitives"
],
"author": "ronin",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ronin/compiler": "0.17.5",
"@types/bun": "1.2.1",
"expect-type": "1.1.0",
"tsup": "8.3.6",
"typescript": "5.7.3"
}
}