-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.06 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
{
"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.2.0-rc.4",
"@pmndrs/uikit": "^1.0.73",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/uikit": "^1.0.73",
"@react-three/uikit-default": "^1.0.73",
"@react-three/uikit-horizon": "^1.0.73",
"@react-three/uikit-lucide": "^1.0.73",
"@react-three/xr": "^6.6.30",
"ajv": "^8.20.0",
"d3-selection": "^3.0.0",
"jsroot": "^7.11.0",
"lucide-react": "^1.17.0",
"react-compiler-runtime": "^1.0.0",
"rxjs": "^7.8.2",
"styled-components": "^6.4.2",
"three": "^0.184.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.57.0",
"@rolldown/plugin-babel": "^0.2.3",
"@types/babel__core": "^7.20.5",
"@types/d3-selection": "^3.0.11",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14",
"vite-plugin-dts": "^5.0.1"
}
}