-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
{
"name": "@alleninstitute/vis-dzi",
"version": "0.0.7",
"contributors": [
{
"name": "Lane Sawyer",
"email": "lane.sawyer@alleninstitute.org"
},
{
"name": "Noah Shepard",
"email": "noah.shepard@alleninstitute.org"
},
{
"name": "Skyler Moosman",
"email": "skyler.moosman@alleninstitute.org"
},
{
"name": "Su Li",
"email": "su.li@alleninstitute.org"
}
],
"license": "BSD-3-Clause",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "parcel build --no-cache",
"watch": "parcel watch",
"test": "vitest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/AllenInstitute/vis.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/AllenInstitute"
},
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/lodash": "^4.14.202",
"parcel": "2.12.0",
"typescript": "^5.3.3",
"vitest": "^1.4.0"
},
"dependencies": {
"@alleninstitute/vis-geometry": "workspace:*",
"@alleninstitute/vis-scatterbrain": "workspace:*",
"lodash": "^4.17.21",
"regl": "^2.1.0"
}
}