-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.74 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
{
"name": "plaited",
"version": "7.2.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"
},
"bin": {
"plaited": "./bin/plaited.ts"
},
"type": "module",
"main": "./main.ts",
"exports": {
".": "./src/main.ts",
"./controller": "./src/controller.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",
"check:biome": "biome 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",
"test": "bun test"
},
"lint-staged": {
"*.{js,cjs,jsx,tsx,ts}": [
"bunx biome check --write"
],
"package.json": [
"format-package -w"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "8.20.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@earendil-works/pi-coding-agent": "0.82.1",
"@playwright/cli": "^0.1.17",
"@types/bun": "^1.3.14",
"@webref/css": "^8.7.1",
"commitlint": "21.2.1",
"css-tree": "^3.2.1",
"cz-conventional-changelog": "3.3.0",
"format-package": "8.0.0",
"lint-staged": "17.2.0",
"typescript": "7.0.2"
}
}