Mercurial > code > home > repos > streamed-graph
annotate package.json @ 150:3ce355e4f388 default tip
bye jest; hi vitest. new working test for styles.ts
author | drewp@bigasterisk.com |
---|---|
date | Mon, 08 May 2023 17:27:44 -0700 |
parents | 5e76bad44a81 |
children |
rev | line source |
---|---|
0 | 1 { |
91 | 2 "name": "@bigasterisk/streamed-graph", |
149 | 3 "version": "0.14.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": { |
150
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
11 "test": "vitest", |
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
12 "coverage": "vitest run --coverage", |
99 | 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 "sub-events": "^1.9.0" | |
17 | 30 }, |
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
|
31 "devDependencies": { |
133 | 32 "@rollup/plugin-node-resolve": "^15.0.2", |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
33 "@rollup/plugin-terser": "^0.4.1", |
126 | 34 "dependency-cruiser": "^12.12.0", |
150
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
35 "jsdom": "^22.0.0", |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
127
diff
changeset
|
36 "rollup": "^3.21.5", |
150
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
37 "ts-node": "^10.9.1", |
132 | 38 "tslib": "^2.5.0", |
39 "typescript": "^5.0.4", | |
150
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
40 "vite": "^4.3.5", |
3ce355e4f388
bye jest; hi vitest. new working test for styles.ts
drewp@bigasterisk.com
parents:
149
diff
changeset
|
41 "vitest": "^0.31.0" |
0 | 42 } |
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
|
43 } |