-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.73 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.73 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
101
102
{
"name": "js-cloudimage-3d-view",
"version": "1.2.0",
"description": "Interactive 3D model viewer with orbit controls, lighting, and accessibility",
"license": "MIT",
"author": "Scaleflex",
"main": "dist/js-cloudimage-3d-view.cjs.js",
"module": "dist/js-cloudimage-3d-view.esm.js",
"unpkg": "dist/js-cloudimage-3d-view.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/js-cloudimage-3d-view.esm.js",
"require": "./dist/js-cloudimage-3d-view.cjs.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite --config config/vite.demo.config.ts",
"dev:react": "vite --config config/vite.react-demo.config.ts",
"build": "npm run build:bundle && npm run build:react",
"build:bundle": "vite build --config config/vite.config.ts",
"build:react": "vite build --config config/vite.react.config.ts",
"build:demo": "vite build --config config/vite.demo.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/ --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"three": ">=0.150.0",
"web-ifc": ">=0.0.66"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"web-ifc": {
"optional": true
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.170.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.57.0",
"jsdom": "^25.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.170.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^3.0.0",
"web-ifc": "^0.0.75"
},
"keywords": [
"3d",
"viewer",
"three.js",
"glb",
"gltf",
"obj",
"orbit-controls",
"webgl",
"cloudimage",
"scaleflex",
"react",
"ifc",
"accessibility"
],
"repository": {
"type": "git",
"url": "https://github.com/scaleflex/js-cloudimage-3d-view.git"
},
"bugs": {
"url": "https://github.com/scaleflex/js-cloudimage-3d-view/issues"
},
"homepage": "https://scaleflex.github.io/js-cloudimage-3d-view/"
}