-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.41 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": "@aestheticfunction/dspack-emit",
"version": "0.7.0",
"type": "module",
"description": "dspack emitters: compile a dspack design-system contract and dspack surfaces into protocol targets — an A2UI catalog + surface messages (gates A1-A3) and json-render catalog/registry modules + specs (gates J1-J3).",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/aestheticfunction/dspack-emit.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"transform": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"build:catalogs": "tsx src/cli.ts --in input/shadcn-ui.dspack.json --a2ui-version 0.9.1 --out out && tsx src/cli.ts --in input/shadcn-ui.dspack.json --a2ui-version 1.0 --out out",
"test": "vitest run",
"test:pack": "bash scripts/pack-test.sh",
"test:json-render": "bash scripts/json-render-gate.sh",
"check:sync": "node scripts/check-sync.mjs"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"devDependencies": {
"@a2ui/web_core": "0.10.3",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"zod": "3.25.76"
},
"bin": {
"dspack-emit": "dist/cli.js"
}
}