-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@wxn0brp/vql",
"version": "0.12.2",
"main": "dist/index.js",
"author": "wxn0brP",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias",
"test": "bun run src/tests/index.ts",
"types": "api-extractor run --config config/api-extractor.json"
},
"description": "VQL - Valthera Query Language",
"homepage": "https://github.com/wxn0brP/VQL",
"repository": {
"type": "git",
"url": "https://github.com/wxn0brP/VQL.git"
},
"files": [
"dist"
],
"keywords": [
"vql",
"valthera",
"database",
"orm",
"api",
"crud",
"nosql",
"query",
"db",
"query-language"
],
"peerDependencies": {
"@wxn0brp/db-core": "^0.11.5",
"@wxn0brp/falcon-frame": "^0.8.5",
"@wxn0brp/gate-warden": "^0.6.2"
},
"peerDependenciesMeta": {
"@wxn0brp/falcon-frame": {
"optional": true
},
"@wxn0brp/db-core": {
"optional": false
},
"@wxn0brp/gate-warden": {
"optional": true
}
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.11",
"@types/bun": "*",
"@types/node": "*",
"@wxn0brp/biome": "*",
"@wxn0brp/db": "^0.112.0",
"@wxn0brp/db-core": "^0.11.5",
"@wxn0brp/falcon-frame": "^0.8.5",
"@wxn0brp/gate-warden": "^0.6.2",
"esbuild": "^0.28",
"tsc-alias": "^1",
"typescript": "^7"
},
"dependencies": {
"@wxn0brp/lucerna-log": "^0.2.5"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
}
}