-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "@alleninstitute/vis-core",
"version": "0.0.4",
"contributors": [
{
"name": "Lane Sawyer",
"email": "lane.sawyer@alleninstitute.org"
},
{
"name": "James Gerstenberger",
"email": "james.gerstenberger@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"
},
{
"name": "Joel Arbuckle",
"email": "joel.arbuckle@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",
"dev": "parcel watch --port 1235",
"test": "vitest --watch",
"test:ci": "vitest run",
"coverage": "vitest run --coverage",
"changelog": "git-cliff -o changelog.md --tag-pattern @alleninstitute/vis-core@*"
},
"repository": {
"type": "git",
"url": "https://github.com/AllenInstitute/vis.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/AllenInstitute"
},
"devDependencies": {
"@types/lodash": "4.17.19"
},
"dependencies": {
"@alleninstitute/vis-geometry": "workspace:*",
"lodash": "4.17.21",
"regl": "2.1.0"
},
"packageManager": "pnpm@9.14.2"
}