Mercurial > code > home > repos > streamed-graph
annotate package.json @ 104:1aea03d306af
WIP Layout. tests are passing but they're a little wrong
author | drewp@bigasterisk.com |
---|---|
date | Sat, 12 Mar 2022 22:41:43 -0800 |
parents | 76c1a29a328f |
children | 5e6840229a05 |
rev | line source |
---|---|
0 | 1 { |
91 | 2 "name": "@bigasterisk/streamed-graph", |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
100
diff
changeset
|
3 "version": "0.0.6", |
60 | 4 "license": "MIT", |
91 | 5 "author": { |
6 "name": "Drew Perttula", | |
7 "email": "drewp@bigasterisk.com" | |
8 }, | |
9 "registry": "https://bigasterisk.com/js/", | |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
10 "scripts": { |
35 | 11 "test": "jest", |
99 | 12 "test_forever": "jest --watch", |
13 "dev": "vite", | |
14 "build": "tsc && vite build" | |
0 | 15 }, |
99 | 16 "main": "dist/streamed-graph.es.js", |
17 "module": "src/index.ts", | |
18 "types": "types/index.d.ts", | |
17 | 19 "dependencies": { |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
20 "@types/jsonld": "^1.5.6", |
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
21 "@types/n3": "^1.10.4", |
88
ac7ad087d474
graph view rewrites and fixes for the multi-subject table
drewp@bigasterisk.com
parents:
80
diff
changeset
|
22 "immutable": "^4.0.0", |
100
ad08e5e25fc9
revert jsonld a few years to avoid a vite/commonjs build issue
drewp@bigasterisk.com
parents:
99
diff
changeset
|
23 "jsonld": "^2.0.2", |
98 | 24 "lit": "^2.1.3", |
25 "n3": "^1.13.0", | |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
26 "rdf-js": "^4.0.2" |
17 | 27 }, |
104
1aea03d306af
WIP Layout. tests are passing but they're a little wrong
drewp@bigasterisk.com
parents:
101
diff
changeset
|
28 "n3 is hacked":"to remove hashCode getter", |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
29 "devDependencies": { |
99 | 30 "@types/jest": "^27.4.0", |
31 "jest": "^27.5.1", | |
32 "stylus": "^0.56.0", | |
33 "ts-jest": "^27.1.3", | |
34 "tslib": "^2.3.1", | |
35 "typescript": "^4.5.5", | |
36 "vite": "^2.8.1" | |
0 | 37 } |
42
895ae7c5b0f4
don't pile all the deps in our sharable library. other fixes to make it work as a dep.
drewp@bigasterisk.com
parents:
41
diff
changeset
|
38 } |