-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.72 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
{
"name": "@ace-code/shast",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"description": "AI-first constrained UI format and validated server-side renderer with structurally coupled HTML and CSS",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "tsc --noEmit && node --import=tsx/esm --test",
"test:watch": "node --import=tsx/esm --test --watch",
"test:conformance": "CONFORMANCE=1 node --import=tsx/esm --test tests/text-renderer/conformance.test.ts",
"tr:grid": "npx tsx text-renderer/example.ts",
"tr:compare": "npx tsx text-renderer/compare.ts",
"tr:html": "npx tsx text-renderer/emit-html.ts",
"diag:v1": "tsc --singleThreaded --project tsconfig.v1.json --extendedDiagnostics",
"diag:v2": "tsc --singleThreaded --project tsconfig.v2.json --extendedDiagnostics",
"diag:v3": "tsc --singleThreaded --project tsconfig.v3.json --extendedDiagnostics",
"diag:v4": "tsc --singleThreaded --project tsconfig.v4.json --extendedDiagnostics",
"diff": "pnpm diag:v1 > /tmp/diag-v1.txt 2>&1; pnpm diag:v2 > /tmp/diag-v2.txt 2>&1; diff /tmp/diag-v1.txt /tmp/diag-v2.txt || true",
"cmp:gen": "node cmp/gen.mjs",
"cmp:conf": "./cmp/conf.sh",
"cmp:perf": "./cmp/perf.sh",
"cmp:diag": "./cmp/diag.sh",
"cmp:ac": "node cmp/ac.mjs",
"bench:ac": "npx tsx scripts/autocomplete-bench.ts"
},
"keywords": [
"html",
"css",
"ast",
"semantic",
"typescript",
"type-safe",
"scoped-css",
"components",
"validation"
],
"author": "Sagi Carmel (https://github.com/AceCodePt)",
"license": "MIT",
"packageManager": "pnpm@11.17.0",
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^26.1.2",
"tsx": "^4.23.1"
},
"dependencies": {
"typescript": "^7.0.2"
}
}