-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "json-diff-ts",
"version": "5.0.0-alpha.2",
"description": "Modern TypeScript JSON diff library - Zero dependencies, high performance, ESM + CommonJS support. Calculate and apply differences between JSON objects with advanced features like key-based array diffing, JSONPath support, and atomic changesets.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup --format cjs,esm",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"test": "jest --config jest.config.mjs",
"test:watch": "jest --watch --config jest.config.mjs",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ltwlf/json-diff-ts.git"
},
"keywords": [
"json",
"diff",
"difference",
"typescript",
"javascript",
"compare",
"patch",
"delta",
"object-diff",
"json-diff",
"json-patch",
"state-management",
"data-sync",
"merge",
"changeset",
"array-diff",
"deep-diff",
"object-compare",
"jsonpath",
"modern",
"esm",
"zero-dependencies",
"performance"
],
"author": "Christian Glessner",
"license": "MIT",
"bugs": {
"url": "https://github.com/ltwlf/json-diff-ts/issues"
},
"homepage": "https://github.com/ltwlf/json-diff-ts#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.0",
"@types/jest": "^30.0.0",
"eslint": "^10.0.2",
"jest": "^30.0.0",
"prettier": "^3.0.3",
"ts-jest": "^29.4.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
}
}