Mercurial > code > home > repos > streamed-graph
annotate package.json @ 138:ea0b4e46de2b
release v0.10.0
author | drewp@bigasterisk.com |
---|---|
date | Sat, 06 May 2023 15:35:11 -0700 |
parents | a8939c717015 |
children | 5adf79d4a9f4 |
rev | line source |
---|---|
0 | 1 { |
91 | 2 "name": "@bigasterisk/streamed-graph", |
138 | 3 "version": "0.10.0", |
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": { |
127 | 20 "@types/jsonld": "^1.5.8", |
79
0c188ed3bcd8
starting lit upgrade. total mess right now
drewp@bigasterisk.com
parents:
75
diff
changeset
|
21 "@types/n3": "^1.10.4", |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
22 "@types/node": "^20.1.0", |
127 | 23 "immutable": "^4.3.0", |
24 "jsonld": "^8.1.1", | |
25 "jsonld-streaming-parser": "^3.2.0", | |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
26 "lit": "^2.7.4", |
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
27 "n3": "^1.16.4", |
127 | 28 "rdf-js": "^4.0.2", |
29 "rdf-parse": "^2.3.2", | |
30 "sub-events": "^1.9.0" | |
17 | 31 }, |
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
|
32 "devDependencies": { |
137
a8939c717015
still trying to get build right, but there are other update bugs too
drewp@bigasterisk.com
parents:
136
diff
changeset
|
33 "@rollup/plugin-alias": "^5.0.0", |
133 | 34 "@rollup/plugin-commonjs": "^24.1.0", |
35 "@rollup/plugin-node-resolve": "^15.0.2", | |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
36 "@rollup/plugin-terser": "^0.4.1", |
132 | 37 "@types/jest": "^29.5.1", |
126 | 38 "dependency-cruiser": "^12.12.0", |
132 | 39 "jest": "^29.5.0", |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
40 "rollup": "^3.21.5", |
132 | 41 "stylus": "^0.59.0", |
42 "ts-jest": "^29.1.0", | |
43 "tslib": "^2.5.0", | |
44 "typescript": "^5.0.4", | |
45 "vite": "^4.3.5" | |
0 | 46 } |
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
|
47 } |