-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.78 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.78 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
{
"name": "plaited",
"version": "7.3.0-next.1",
"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",
"main": "./src/main.ts",
"exports": {
".": "./src/main.ts",
"./improve": "./src/improve.ts",
"./mcp": "./src/mcp.ts",
"./jsx-dev-runtime": "./src/jsx-dev-runtime.ts",
"./jsx-runtime": "./src/jsx-runtime.ts"
},
"files": [
"./.bin/**",
"./AGENTS.md",
"./skills/**",
"./src/**"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"autoresearch:runner": "bunx varlock run -- bun scripts/autoresearch-runner.ts",
"build:wasm": "bunx asc src/hypergraph/graph-algorithms/graph-algorithms.ts --outFile src/hypergraph/hypergraph.wasm --optimize --exportRuntime",
"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",
"pi": "bunx varlock run -- bunx pi --model openrouter/minimax/minimax-m2.7",
"pi:review": "bunx varlock run -- bun scripts/modnet-pi-review.ts",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && git config core.hooksPath .hooks || true",
"research:behavioral-factories": "bunx varlock run -- bun scripts/autoresearch-runner.ts scripts/behavioral-factories.ts run",
"test": "bun test"
},
"lint-staged": {
"*.{js,cjs,jsx,tsx,ts}": [
"bunx biome check --write"
],
"package.json": [
"format-package -w"
]
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.16.1",
"@modelcontextprotocol/sdk": "1.26.0",
"@youdotcom-oss/api": "^0.5.0",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@happy-dom/global-registrator": "^20.7.0",
"@mariozechner/pi-coding-agent": "^0.62.0",
"@mermaid-js/mermaid-cli": "11.12.0",
"@playwright/cli": "^0.1.1",
"@types/beautify": "0.0.3",
"@types/bun": "1.3.9",
"@types/node": "25.3.0",
"@types/sinon": "21.0.0",
"@varlock/1password-plugin": "^0.2.3",
"assemblyscript": "^0.28.9",
"axe-core": "4.11.1",
"beautify": "0.0.8",
"csstype": "3.2.3",
"cz-conventional-changelog": "3.3.0",
"format-package": "7.0.0",
"lint-staged": "16.2.7",
"sinon": "21.0.1",
"typescript": "5.9.3",
"typescript-language-server": "5.1.3",
"varlock": "^0.5.0"
}
}