-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 914 Bytes
/
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
{
"name": "solid-immer",
"version": "0.1.1",
"description": "Use immer with Solidjs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --sourcemap --format esm,cjs"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/myWsq/solid-immer.git"
},
"keywords": [
"immer",
"solid",
"solidjs",
"signal"
],
"author": "myWsq",
"license": "MIT",
"bugs": {
"url": "https://github.com/myWsq/solid-immer/issues"
},
"homepage": "https://github.com/myWsq/solid-immer#readme",
"peerDependencies": {
"immer": ">=2.0.0",
"solid-js": "^1.0.0"
},
"dependencies": {
"immer": "^9.0.12"
},
"devDependencies": {
"solid-js": "^1.3.12",
"standard-version": "^9.3.2",
"tsup": "^5.12.1",
"typescript": "^4.6.2"
}
}