-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"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",
"test:ci": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/AllenInstitute/vis.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/AllenInstitute"
},
"dependencies": {
"@alleninstitute/vis-geometry": "workspace:*",
"@alleninstitute/vis-scatterbrain": "workspace:*",
"regl": "2.1.1"
},
"packageManager": "pnpm@9.14.2"
}