-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.85 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.85 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
{
"name": "reframe",
"private": true,
"version": "0.1.0",
"description": "Universal typed-graph engine — import, audit, transform, export. Design and knowledge as first-class domains.",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "node packages/mcp/dist/mcp/src/http-server.js",
"build": "npm run build:core && npm run build:cli && npm run build:mcp && npm run build:editor && npm run build:editor-bundle",
"build:editor": "npm run build -w packages/editor",
"build:editor-bundle": "npx esbuild packages/editor/src/app/platform-bootstrap.ts --bundle --format=esm --platform=browser --target=es2022 --outfile=packages/mcp/dist/mcp/src/platform/editor-bundle.js --alias:@reframe/core=./packages/core/src/browser.ts --external:node:fs/promises --external:node:url --external:node:path --external:node:fs --external:fs --external:path",
"build:core": "npm run build -w packages/core",
"build:cli": "npm run build -w packages/cli",
"build:mcp": "npm run build -w packages/mcp",
"typecheck": "tsc --noEmit -p packages/core/tsconfig.json && tsc --noEmit -p packages/mcp/tsconfig.json && tsc --noEmit -p packages/cli/tsconfig.json",
"test": "npx tsx scripts/test-pipeline.ts && npx tsx scripts/test-reframe-all.ts && npx tsx scripts/test-scene-import-parity.ts",
"test:pipeline": "npx tsx scripts/test-pipeline.ts",
"test:reframe": "npx tsx scripts/test-reframe-all.ts",
"test:build": "npx tsx scripts/test-build-system.ts"
},
"author": "Ilya Makarov",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/ilya-makarov-dev/reframe.git"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"playwright": "^1.59.1",
"typescript": "^5.4.0"
},
"dependencies": {
"flowbite": "^4.0.1",
"sortablejs": "^1.15.7",
"tw-to-css": "^0.0.12"
}
}