-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 843 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 843 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
{
"name": "@objectql/platform-node",
"version": "4.2.2",
"description": "Node.js platform utilities for ObjectQL - File system integration, YAML loading, and plugin management",
"keywords": [
"objectql",
"nodejs",
"platform",
"filesystem",
"yaml",
"metadata",
"loader",
"plugins"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run"
},
"dependencies": {
"@objectstack/objectql": "^3.0.8",
"@objectql/types": "workspace:*",
"@objectstack/spec": "^3.0.8",
"fast-glob": "^3.3.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"typescript": "^5.3.0"
}
}