-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 KB
/
package.json
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
{
"name": "@cmi-dair/brainviewer",
"displayName": "brainviewer",
"description": "Brain viewer",
"version": "0.1.4",
"main": "./dist/brainviewer.umd.cjs",
"module": "./dist/brainviewer.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/brainviewer.js",
"require": "./dist/brainviewer.umd.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmi-dair/brainviewer.git"
},
"type": "module",
"bugs": {
"url": "https://github.com/cmi-dair/brainviewer/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && vite build --config vite.config.bundle.js --emptyOutDir false",
"lint": "eslint src --ext ts",
"test": "vitest"
},
"dependencies": {
"camera-controls": "^2.7.0",
"d3": "^7.8.5",
"d3-scale-chromatic": "^3.0.0",
"three": "0.150.0"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/node": "^20.5.0",
"@types/three": "^0.154.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"jsdom": "^22.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.2",
"vitest": "^0.34.1"
}
}