-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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": "active-store",
"version": "0.3.14",
"description": "",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "vite",
"build": "vite build",
"prepublishOnly": "vite build"
},
"repository": {
"type": "git",
"url": "https://github.com/ziolko/active-store.git"
},
"homepage": "https://github.com/ziolko/active-store",
"type": "module",
"files": [
"dist"
],
"main": "./dist/active-store.umd.cjs",
"module": "./dist/active-store.js",
"exports": {
".": {
"import": "./dist/active-store.js",
"require": "./dist/active-store.umd.cjs"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"shallowequal": "^1.1.0",
"use-sync-external-store": "^1.2.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/react": "^18.3.0",
"react-dom": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/shallowequal": "^1.1.1",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}