-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@objectstack/spec",
"version": "0.1.2",
"description": "ObjectStack Protocol & Specification - TypeScript Interfaces, JSON Schemas, and Convention Configurations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"json-schema",
"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": "^2.1.8",
"zod-to-json-schema": "^3.25.1"
},
"dependencies": {
"zod": "^3.22.4"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}