-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.79 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.79 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
{
"name": "@ndmspc/ndmvr",
"version": "0.0.1",
"description": "NDMVR React three fiber components",
"author": "NDMSPC community",
"repository": {
"type": "git",
"url": "https://gitlab.com/ndmspc/ndmvr.git"
},
"license": "MIT",
"keywords": [],
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css",
"**/uikit-styles.ts",
"./src/lib/scripts/uikit-styles.ts"
],
"type": "module",
"types": "./dist/ndmvr.d.ts",
"main": "./dist/ndmvr.umd.js",
"module": "./dist/ndmvr.es.js",
"exports": {
".": {
"types": "./dist/ndmvr.d.ts",
"import": "./dist/ndmvr.es.js",
"require": "./dist/ndmvr.umd.js"
},
"./style.css": "./dist/ndmvr.css"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && cross-env NODE_OPTIONS=--max-old-space-size=4096 vite build",
"build-app": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vite build -c vite.config.app.ts",
"watch": "vite build --watch",
"lint": "eslint ./src --ext js,jsx,ts,tsx --report-unused-disable-directives .gitignore",
"preview": "vite -c vite.config.app.ts",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css}\""
},
"peerDependencies": {
"react": ">=19 <20",
"react-dom": ">=19 <20"
},
"dependencies": {
"@ndmspc/ndmvr-core": "1.1.0-rc.12",
"@pmndrs/uikit": "^1.0.64",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/uikit": "^1.0.64",
"@react-three/uikit-default": "^1.0.64",
"@react-three/uikit-horizon": "^1.0.64",
"@react-three/uikit-lucide": "^1.0.64",
"@react-three/xr": "^6.6.29",
"@types/d3-selection": "^3.0.11",
"ajv": "^8.18.0",
"d3-selection": "^3.0.0",
"jsroot": "^7.10.3",
"rxjs": "^7.8.2",
"styled-components": "^6.3.11",
"three": "^0.183.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.2",
"vite-plugin-dts": "^4.5.4"
}
}