-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
{
"name": "diff-immutability-helper",
"version": "2.0.0",
"description": "Creates an RFC 6902 JSON Patch diff between 2 JavaScript objects using LCS-based array diffing",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"repository": "git@github.com:yeojz/diff-immutability-helper.git",
"author": "Gerald Yeo <contact@fusedthought.com>",
"license": "MIT",
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"bench": "vitest bench"
},
"keywords": [
"diff",
"json",
"json-patch",
"rfc6902",
"changeset",
"object",
"lcs"
],
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/node": "^25.2.3",
"eslint": "^10.0.0",
"fast-json-patch": "^3.1.1",
"immutability-helper": "^3.1.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}