-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.09 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@thatopen/services",
"description": "Client library and CLI for building BIM apps and cloud components on the That Open Platform",
"author": "That Open Company",
"license": "MIT",
"homepage": "https://github.com/ThatOpen/engine_services#readme",
"bugs": {
"url": "https://github.com/ThatOpen/engine_services/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatOpen/engine_services.git"
},
"publishConfig": {
"access": "public"
},
"private": false,
"version": "0.3.3",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"bin": {
"thatopen": "dist/cli.js"
},
"files": [
"dist",
"src/cli/templates",
"src/built-in",
"docs",
"resources"
],
"scripts": {
"dev": "vite",
"lint": "eslint src/",
"build": "eslint src/ && tsc && vite build && vite build --config vite.config.cli.mts && node scripts/generate-cli-docs-paths.mjs && node scripts/generate-client-examples-paths.mjs",
"build:lib": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"build:cli": "vite build --config vite.config.cli.mts",
"preview": "vite preview",
"test:ui": "vite --config test/vite.config.mts",
"test:cli-build-app": "npm run build:cli && node test/setup-test-app.mjs",
"test:cli-serve-app": "cd temp/test-app && thatopen serve",
"test:cli-build-component": "npm run build:cli && node test/setup-test-component.mjs",
"test:cli-run-component": "cd temp/test-component && thatopen run --skip-build",
"test:cli-serve-component": "cd temp/test-component && thatopen local-server",
"template:app": "cd src/cli/templates/app && npm install && cd ../../../.. && node scripts/generate-template-tsconfig.mjs",
"template:app:dev": "cd src/cli/templates/app && npm run dev",
"changeset": "changeset",
"version": "changeset version",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@thatopen/components": "~3.4.0",
"@thatopen/components-front": "~3.4.0",
"@thatopen/fragments": "~3.4.0",
"@thatopen/ui": "~3.4.0",
"@thatopen/ui-obc": "~3.4.0",
"@types/node": "^20.12.12",
"@types/three": "^0.182.0",
"commander": "^14.0.3",
"esbuild": "^0.27.3",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.3.0",
"jszip": "^3.10.1",
"prettier": "^3.2.5",
"three": ">=0.182.0",
"tsx": "^4.16.2",
"typescript": "^5.2.2",
"typescript-eslint": "^7.10.0",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^4.1.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"peerDependencies": {
"@thatopen/components": "~3.4.0",
"@thatopen/ui": "~3.4.0",
"three": ">=0.182.0"
},
"peerDependenciesMeta": {
"@thatopen/components": {
"optional": true
},
"@thatopen/ui": {
"optional": true
},
"three": {
"optional": true
}
}
}