-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (60 loc) · 1.2 KB
/
package.json
File metadata and controls
61 lines (60 loc) · 1.2 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
{
"name": "@ndmspc/ndmvr-core",
"private": false,
"version": "0.0.1",
"description": "NDMVR Core Library",
"author": "",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/ndmspc/ndmvr-core/issues"
},
"homepage": "https://ndmspc.gitlab.io/ndmvr-core",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/ndmspc/ndmvr-core.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"directories": {
"doc": "docs"
},
"files": [
"dist"
],
"publishConfig": {
"ignore": [
"!build/",
"src/",
"test/"
]
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepack": "npmignore --auto"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"npmignore": "^0.3.5",
"standard": "^17.1.2",
"three": "^0.183.2",
"jsroot": "^7.10.3",
"aframe": "^1.7.1",
"vite": "^8.0.2"
},
"dependencies": {
"rxjs": "^7.8.2"
},
"peerDependencies": {
"three": ">=0.182 <0.190",
"jsroot": ">=7.10 <8"
}
}