forked from milomg/js-reactivity-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "js-reactivity-benchmark",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run",
"build": "esbuild src/index.ts --bundle --format=cjs --platform=node --outdir=dist --sourcemap=external",
"run": "node --expose-gc dist/index.js",
"bench": "esbuild src/index.ts --bundle --format=cjs --platform=node | node --expose-gc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@amadeus-it-group/tansu": "^2.0.0",
"@angular/core": "19.0.6",
"@preact/signals": "^2.0.0",
"@reactively/core": "^0.0.8",
"@vue/reactivity": "^3.5.13",
"alien-signals": "1.0.0-alpha.1",
"compostate": "0.6.0-alpha.1",
"kairo": "0.6.0-rc.0",
"mobx": "^6.13.5",
"mol_wire_lib": "^1.0.1259",
"oby": "15.1.2",
"preact": "^10.25.4",
"random": "^5.1.1",
"react": "^19.0.0",
"s-js": "^0.4.9",
"signal-polyfill": "^0.2.1",
"signia": "^0.1.5",
"solid-js": "^1.9.4",
"svelte": "5.17.3",
"usignal": "^0.9.0",
"valtio": "^2.1.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"esbuild": "^0.24.2",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
}
}