-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "@rossshannon/deep-diffs",
"version": "1.0.0",
"description": "Visualise cumulative changes across multiple text revisions with intensity-based highlighting",
"type": "module",
"main": "dist/deep-diff.cjs",
"module": "dist/deep-diff.js",
"types": "dist/deep-diff.d.ts",
"exports": {
".": {
"import": "./dist/deep-diff.js",
"require": "./dist/deep-diff.cjs",
"types": "./dist/deep-diff.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"test": "node --test 'test/*.test.js'",
"typecheck": "tsc --noEmit --strict --moduleResolution node --module ESNext --target ESNext src/deep-diff.d.ts",
"precommit": "npm test && npm run build && npm run typecheck",
"prepublishOnly": "npm run build",
"prepare": "git config core.hooksPath .githooks"
},
"keywords": [
"diff",
"text-diff",
"revision",
"history",
"heatmap",
"visualisation",
"visualization",
"track-changes",
"collaborative-editing",
"operational-transformation"
],
"author": "Ross Shannon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rossshannon/deep-diffs.git"
},
"bugs": {
"url": "https://github.com/rossshannon/deep-diffs/issues"
},
"homepage": "https://github.com/rossshannon/deep-diffs#readme",
"dependencies": {
"diff-match-patch": "^1.0.5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.9.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}