-
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.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.5 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": "plaited",
"version": "8.0.0-next.0",
"license": "ISC",
"engines": {
"bun": ">= v1.2.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plaited/plaited.git"
},
"bugs": {
"url": "https://github.com/plaited/plaited/issues"
},
"homepage": "https://github.com/plaited/plaited/tree/main#readme",
"bin": {
"plaited": "./bin/plaited.ts"
},
"type": "module",
"exports": {
"./behavioral": "./src/behavioral.ts",
"./cli": "./src/cli.ts",
"./eval": "./src/eval.ts",
"./ui": "./src/ui.ts",
"./utils": "./src/utils.ts"
},
"files": [
"./.bin/**",
"./AGENTS.md",
"./src/**"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "bun run check:biome && bun run check:types && bun run check:package",
"check:biome": "biome check",
"check:package": "format-package --check",
"check:types": "tsc --noEmit",
"check:write": "biome check --write && format-package --write",
"generate:css-schemas": "bun run scripts/css-schemas/run.ts generate",
"prepare": "git config core.hooksPath .hooks",
"setup": "bash scripts/setup.sh",
"setup:bun": "bash scripts/setup.sh bun",
"setup:deps": "bash scripts/setup.sh deps",
"setup:link": "bash scripts/setup.sh link",
"test": "bun test"
},
"lint-staged": {
"*.{js,cjs,jsx,tsx,ts}": [
"bunx biome check --write"
],
"package.json": [
"format-package -w"
]
},
"overrides": {
"zod": "4.4.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "8.20.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@earendil-works/pi-coding-agent": "0.80.10",
"@happy-dom/global-registrator": "^20.11.0",
"@mermaid-js/mermaid-cli": "11.16.0",
"@playwright/cli": "^0.1.17",
"@types/beautify": "0.0.3",
"@types/bun": "^1.3.14",
"@types/node": "26.1.1",
"@types/sinon": "22.0.0",
"@varlock/1password-plugin": "^2.0.0",
"@webref/css": "^8.7.0",
"axe-core": "4.12.1",
"beautify": "0.0.8",
"commitlint": "21.2.1",
"css-tree": "^3.2.1",
"cz-conventional-changelog": "3.3.0",
"format-package": "8.0.0",
"lint-staged": "17.1.0",
"sinon": "22.0.0",
"typescript": "7.0.2",
"typescript-language-server": "5.3.0",
"varlock": "^1.11.0"
}
}