-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
{
"name": "ultrapatch",
"author": "FluentCoding",
"type": "module",
"version": "0.1.4",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "🔥 Extremely fast (but naive) JSONPatch implementation",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FluentCoding/UltraPatch.git"
},
"license": "MIT",
"keywords": [
"jsonpatch",
"json",
"diff",
"patch"
],
"scripts": {
"prepareTest": "bun run test/tests-gen.js",
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"node:bench:diff": "node bench/diff.ts",
"bun:bench:diff": "bun run bench/diff.ts",
"node:bench:patch": "node --experimental-strip-types bench/patch.ts",
"bun:bench:patch": "bun run bench/patch.ts"
},
"devDependencies": {
"@types/bun": "latest",
"bun-plugin-dts": "^0.3.0",
"mitata": "^1.0.34"
},
"peerDependencies": {
"typescript": "^5"
},
"resolutions": {
"bun-types": "canary"
}
}