-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.54 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
{
"name": "@scenicai/monorepo",
"version": "2.1.0",
"description": "Interact with Unity via TypeScript and the command line!",
"type": "module",
"main": "index.js",
"scripts": {
"generate": "node scripts/generate-registries.mjs",
"build": "npm run generate && npm run build:sdk && npm run build:cli",
"build:sdk": "npm run build --workspace=@scenicai/sdk",
"build:cli": "npm run build --workspace=@scenicai/cli",
"local": "node packages/cli/dist/index.js -p \"TestProjects/Scenic3Dv6.3\"",
"local:init": "node packages/cli/dist/index.js -p \"TestProjects/Scenic3Dv6.3\" init --enable-execute --local \"../../../unity\"",
"test": "npm run generate && npm run test:sdk && npm run test:cli",
"test:sdk": "npm run test --workspace=@scenicai/sdk",
"test:cli": "npm run test --workspace=@scenicai/cli",
"test:integration": "npm run build && npm run test:integration:safe && npm run test:integration:reload",
"test:integration:safe": "npm run test:integration:sdk:safe && npm run test:integration:cli:safe",
"test:integration:reload": "npm run test:integration:sdk:reload && npm run test:integration:cli:reload",
"test:integration:sdk": "npm run build:sdk && npm run test:integration:sdk:safe && npm run test:integration:sdk:reload",
"test:integration:sdk:safe": "node --test --test-concurrency=1 'integration/sdk/safe/*.test.ts'",
"test:integration:sdk:reload": "node --test --test-concurrency=1 'integration/sdk/reload/*.test.ts'",
"test:integration:cli": "npm run build:cli && npm run test:integration:cli:safe && npm run test:integration:cli:reload",
"test:integration:cli:safe": "node --test --test-concurrency=1 'integration/cli/safe/*.test.ts'",
"test:integration:cli:reload": "node --test --test-concurrency=1 'integration/cli/reload/*.test.ts'",
"test:local": "npm run build && npm run test",
"smoke:execute": "node packages/cli/dist/index.js execute -p \"TestProjects/Scenic3Dv6.3\" \"UnityEngine.Debug.Log(\\\"scenic smoke test\\\");\"",
"bump": "node scripts/bump-version.ts",
"scaffold": "node scripts/scaffold-command.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msanatan/scenic.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/msanatan/scenic/issues"
},
"homepage": "https://github.com/msanatan/scenic#readme",
"private": true,
"engines": {
"node": ">=22.18.0"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
}
}