-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.3 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
52
53
54
55
56
{
"name": "@typewriter/json-patch",
"version": "0.7.8",
"description": "Immutable JSON Patch implementation based on RFC 6902 supporting operational transformation and last-writer-wins",
"author": "Jacob Wright <jacwright@gmail.com>",
"bugs": {
"url": "https://github.com/typewriter-editor/json-patch/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"package.json",
"README.md",
"dist"
],
"homepage": "https://github.com/typewriter-editor/json-patch/",
"keywords": [
"immutable",
"json",
"patch",
"rfc6902"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/typewriter-editor/json-patch.git"
},
"scripts": {
"dev": "vite",
"build": "svelte-package -i src",
"prepare": "npm run build",
"test": "vitest"
},
"dependencies": {
"alphacounter": "^2.x"
},
"peerDependencies": {
"@typewriter/delta": "^1.2.3",
"@typewriter/document": "^0.9.4"
},
"devDependencies": {
"@sveltejs/package": "^2.3.4",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}