-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.21 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
{
"packageManager": "[email protected]",
"name": "immerhin",
"version": "0.10.0",
"description": "Send patches around to keep the system in sync.",
"type": "module",
"exports": {
"import": "./dist/immerhin.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build:js": "esbuild src/index.ts --bundle --format=esm --external:immer --external:nanoid --outfile=dist/immerhin.js",
"build": "rm -rf dist && yarn build:js && yarn build:types",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/webstudio-is/immerhin.git"
},
"keywords": [
"Immer",
"JSON",
"Patch",
"State",
"management",
"undo-redo"
],
"author": "Oleg Isonen",
"license": "MIT",
"bugs": {
"url": "https://github.com/webstudio-is/immerhin/issues"
},
"homepage": "https://github.com/webstudio-is/immerhin#readme",
"devDependencies": {
"esbuild": "^0.18.15",
"prettier": "^3.3.3",
"typescript": "^5.1.6"
},
"dependencies": {
"immer": "^10.0.2",
"nanoid": "^5.0.1"
},
"files": [
"dist",
"README.md"
]
}