This repository was archived by the owner on Oct 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 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
{
"name": "geocopilot",
"version": "1.0.3",
"description": "AI-powered 3D BIM scene control with natural language commands",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "tsc -p tsconfig.lib.json",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"cesium",
"3d",
"bim",
"ai",
"natural-language",
"scene-control",
"react",
"typescript"
],
"author": "Yosgi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yosgi/GeoCopilot"
},
"bugs": {
"url": "https://github.com/yosgi/GeoCopilot/issues"
},
"homepage": "https://github.com/yosgi/Gzhopilot#readme",
"peerDependencies": {
"cesium": "^1.131.0",
"langchain": "^0.3.29",
"openai": "^5.8.3",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@types/axios": "^0.14.4",
"axios": "^1.11.0",
"cesium": "^1.131.0",
"langchain": "^0.3.29",
"openai": "^5.8.3",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-router-dom": "^6.30.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.3",
"vite-plugin-cesium": "^1.2.23",
"vite-plugin-static-copy": "^3.1.0"
}
}