-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) 路 2.99 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) 路 2.99 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": "openora",
"version": "0.0.1",
"private": true,
"description": "Open-source, headless, plugin-based, AI-native igaming framework",
"homepage": "https://github.com/blurifycom/openora",
"license": "AGPL-3.0-only",
"author": "Blurify",
"repository": {
"type": "git",
"url": "https://github.com/blurifycom/openora.git"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean && rm -rf node_modules",
"verify": "turbo run check:types check:lint check:format check:boundaries check:shape check:deprecations test:unit test:integration test:tools && pnpm check:drift",
"check:types": "turbo run check:types",
"check:lint": "oxlint .",
"check:format": "oxfmt --check",
"check:boundaries": "depcruise apps packages --config .dependency-cruiser.cjs",
"check:shape": "tsx tools/lint/verify-module-shape.ts",
"check:deprecations": "depretec --fail-on-found --exclude packages/core/src/pam/identity/adapters/identity-reader.service.ts",
"check:drift": "tsx tools/gen/sync-tsconfig-paths.ts --check && tsx tools/gen/gen-catalog.ts && git diff --exit-code -- docs/catalog.json",
"fix:lint": "oxlint . --fix",
"fix:format": "oxfmt && node tools/lint/ensure-final-newline.mjs",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:tools": "node --test \"tools/__tests__/*.test.mjs\"",
"test:scaffold": "tsx tools/gen/eval-scaffold.ts",
"gen": "tsx tools/gen/gen.ts",
"gen:catalog": "tsx tools/gen/gen-catalog.ts",
"gen:drizzle": "pnpm -F @openora/core gen:drizzle",
"gen:tsconfig": "tsx tools/gen/sync-tsconfig-paths.ts",
"gen:agents": "rulesync generate",
"regen": "pnpm run gen:tsconfig && pnpm run gen:drizzle && pnpm run gen:catalog",
"db:migrate": "openora-migrate",
"db:seed": "tsx tools/db/seed.ts",
"db:setup:test": "tsx tools/db/setup-test-db.ts",
"db:setup:test:fresh": "tsx tools/db/setup-test-db.ts --fresh",
"create:app": "tsx tools/create/create-igaming-app.ts",
"create:service": "tsx tools/create/create-service.ts",
"setup": "tsx tools/setup/setup-agent.ts",
"setup:mcp": "tsx tools/setup/setup-mcp.ts",
"prepare": "pnpm run gen:agents && husky",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.31.1",
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@openora/core": "workspace:*",
"@openora/testing": "workspace:*",
"@orpc/contract": "1.14.10",
"@turbo/gen": "2.10.7",
"@types/node": "26.1.1",
"dependency-cruiser": "18.1.0",
"depretec": "0.2.3",
"husky": "9.1.7",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"pg": "8.22.0",
"rulesync": "15.1.0",
"tsx": "4.23.1",
"turbo": "2.10.7",
"typescript": "6.0.3"
},
"engines": {
"node": ">=26.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.8.0"
}