-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.27 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@objectstack/spec",
"version": "0.3.3",
"description": "ObjectStack Protocol & Specification - TypeScript Interfaces, JSON Schemas, and Convention Configurations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./driver": {
"types": "./dist/driver/index.d.ts",
"default": "./dist/driver/index.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"default": "./dist/data/index.js"
},
"./system": {
"types": "./dist/system/index.d.ts",
"default": "./dist/system/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"default": "./dist/auth/index.js"
},
"./kernel": {
"types": "./dist/kernel/index.d.ts",
"default": "./dist/kernel/index.js"
},
"./hub": {
"types": "./dist/hub/index.d.ts",
"default": "./dist/hub/index.js"
},
"./ai": {
"types": "./dist/ai/index.d.ts",
"default": "./dist/ai/index.js"
},
"./automation": {
"types": "./dist/automation/index.d.ts",
"default": "./dist/automation/index.js"
},
"./api": {
"types": "./dist/api/index.d.ts",
"default": "./dist/api/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"default": "./dist/ui/index.js"
}
},
"files": [
"dist",
"json-schema",
"prompts",
"llms.txt",
"README.md"
],
"scripts": {
"build": "pnpm gen:schema && pnpm gen:docs && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"gen:schema": "tsx scripts/build-schemas.ts",
"gen:docs": "tsx scripts/build-docs.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"objectstack",
"protocol",
"specification",
"schema",
"types"
],
"author": "ObjectStack",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^2.1.8",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18",
"zod-to-json-schema": "^3.25.1"
},
"dependencies": {
"zod": "^3.22.4"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}