Mercurial > code > home > repos > streamed-graph
annotate package.json @ 124:e26daf747e19
0.0.8
author | drewp@bigasterisk.com |
---|---|
date | Sun, 20 Mar 2022 16:40:51 -0700 |
parents | f46b9dfa9b9c |
children | 9a57f8c556d2 |
rev | line source |
---|---|
0 | 1 { |
91 | 2 "name": "@bigasterisk/streamed-graph", |
124 | 3 "version": "0.0.8", |
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", |
108
5e6840229a05
rewrite freeStatements rendering to put more planning in layout
drewp@bigasterisk.com
parents:
104
diff
changeset
|
25 "n3": "git+https://github.com/rdfjs/N3.js.git#088006449c9e8275351db604b3d184071fef31a7", |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
26 "rdf-js": "^4.0.2" |
17 | 27 }, |
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
|
28 "devDependencies": { |
99 | 29 "@types/jest": "^27.4.0", |
30 "jest": "^27.5.1", | |
31 "stylus": "^0.56.0", | |
32 "ts-jest": "^27.1.3", | |
33 "tslib": "^2.3.1", | |
34 "typescript": "^4.5.5", | |
35 "vite": "^2.8.1" | |
0 | 36 } |
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
|
37 } |