-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.02 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
45
46
47
48
49
50
51
{
"name": "faster-mobx",
"version": "1.0.17",
"main": "dist/index.js",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"benchmark": "nodemon test/benchmark.ts",
"start": "nodemon src/mobx.ts",
"react": "vite -c test/vite.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trantlabs/faster-mobx.git"
},
"keywords": [
"mobx",
"state-management",
"redux",
"zustand",
"recoil"
],
"author": "Trant Labs",
"maintainers": [
{
"name": "SamuelScheit",
"email": "[email protected]",
"url": "https://samuelscheit.com"
}
],
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/node": "^18.15.3",
"@vitejs/plugin-react": "^3.1.0",
"benchmark": "^2.1.4",
"mobx": "^6.8.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.2.0"
},
"peerDependencies": {
"mobx": "^6.8.0"
},
"dependencies": {
"@types/bun": "^1.0.11",
"@types/jest": "^29.5.12",
"jest": "^29.7.0"
}
}