Mercurial > code > home > repos > streamed-graph
annotate package.json @ 100:ad08e5e25fc9
revert jsonld a few years to avoid a vite/commonjs build issue
the newer jsonld has this dep graph:
jsonld 5.2.0
└─┬ rdf-canonize 3.0.0
└── setimmediate 1.0.5
and that setimmediate uses strict in a way that breaks the build, etc.
author | drewp@bigasterisk.com |
---|---|
date | Fri, 11 Feb 2022 22:57:23 -0800 |
parents | faf7e432f089 |
children | 76c1a29a328f |
rev | line source |
---|---|
0 | 1 { |
91 | 2 "name": "@bigasterisk/streamed-graph", |
3 "version": "0.0.5", | |
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": { |
99 | 11 "rbuild": "rollup -c", |
12 "rbuild_forever": "rollup -cw", | |
35 | 13 "test": "jest", |
99 | 14 "test_forever": "jest --watch", |
15 "dev": "vite", | |
16 "build": "tsc && vite build" | |
0 | 17 }, |
99 | 18 "main": "dist/streamed-graph.es.js", |
19 "module": "src/index.ts", | |
20 "types": "types/index.d.ts", | |
21 "zzzexports": { | |
22 ".": "./dist/streamed-graph.es.js" | |
23 }, | |
24 "zzzfiles": [ | |
25 "dist", | |
26 "types" | |
27 ], | |
17 | 28 "dependencies": { |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
29 "@types/jsonld": "^1.5.6", |
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
30 "@types/n3": "^1.10.4", |
88
ac7ad087d474
graph view rewrites and fixes for the multi-subject table
drewp@bigasterisk.com
parents:
80
diff
changeset
|
31 "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
|
32 "jsonld": "^2.0.2", |
98 | 33 "lit": "^2.1.3", |
34 "n3": "^1.13.0", | |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
35 "rdf-js": "^4.0.2" |
17 | 36 }, |
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
|
37 "devDependencies": { |
99 | 38 "@types/jest": "^27.4.0", |
39 "jest": "^27.5.1", | |
40 "node-globals": "^0.1.5", | |
41 "stylus": "^0.56.0", | |
42 "ts-jest": "^27.1.3", | |
43 "tslib": "^2.3.1", | |
44 "typescript": "^4.5.5", | |
45 "vite": "^2.8.1" | |
46 }, | |
47 "unusedep": { | |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
48 "@rollup/plugin-commonjs": "^21.0.1", |
98 | 49 "@rollup/plugin-node-resolve": "^13.1.3", |
50 "@rollup/plugin-replace": "^3.1.0", | |
80
7c93e17b1111
more fixes, more original code uncommented
drewp@bigasterisk.com
parents:
79
diff
changeset
|
51 "@rollup/plugin-typescript": "^8.3.0", |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
52 "@types/rollup-plugin-postcss": "^3.1.4", |
98 | 53 "rollup": "^2.67.2", |
34 | 54 "rollup-plugin-node-builtins": "^2.1.2", |
80
7c93e17b1111
more fixes, more original code uncommented
drewp@bigasterisk.com
parents:
79
diff
changeset
|
55 "rollup-plugin-node-globals": "^1.4.0", |
99 | 56 "rollup-plugin-postcss": "^4.0.2" |
0 | 57 } |
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
|
58 } |