-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 760 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 760 Bytes
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
{
"name": "morphic-engine-monorepo",
"version": "2.0.0-alpha.0",
"private": true,
"description": "Shinkofa Morphic Adaptation Module — framework-agnostic drop-in universal engine",
"license": "AGPL-3.0-or-later",
"author": "Takumi \"IA Dev Partner\" + Jay (The Ermite)",
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "biome check .",
"format": "biome format --write .",
"demo": "vite --config packages/engine/demo/vite.config.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"typescript": "^5.6.0",
"vite": "8.0.14",
"vitest": "^4.0.0"
}
}