-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 816 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 816 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
{
"name": "codex-file-format-spec",
"version": "0.1.0",
"description": "Specification for the Codex document format",
"private": true,
"scripts": {
"test": "npm run validate:schemas && npm run validate:examples",
"validate:schemas": "npx tsx scripts/validate-schemas.ts",
"validate:examples": "npx tsx scripts/validate-examples.ts",
"check:sync": "npx tsx scripts/check-spec-schema-sync.ts",
"check:refs": "npx tsx scripts/validate-cross-refs.ts",
"check:coverage": "npx tsx scripts/check-example-coverage.ts",
"generate:template": "npx tsx scripts/generate-template.ts"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"@types/node": "^20.11.0"
},
"engines": {
"node": ">=18.0.0"
}
}