-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 909 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
28
{
"name": "openclaw-nebius",
"version": "1.0.0",
"private": true,
"description": "Monorepo for OpenClaw + Nebius integration: provider plugin, deployment UI, and Claude Code skill",
"workspaces": [
"tokenfactory-plugin",
"deploy-ui/web"
],
"scripts": {
"build": "npm run build --workspace=tokenfactory-plugin",
"test": "npm run test:plugin && npm run test:repo",
"test:plugin": "npm run test --workspace=tokenfactory-plugin",
"test:repo": "vitest run --config vitest.config.ts",
"check": "npm run check --workspace=tokenfactory-plugin",
"dev:deploy": "npm run dev --workspace=deploy-ui/web",
"start:deploy": "npm run start --workspace=deploy-ui/web"
},
"devDependencies": {
"vitest": "^3.0.0",
"typescript": "^5.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/opencolin/openclaw-nebius.git"
},
"license": "MIT"
}