forked from pylarco/diff-apply
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "diff-apply",
"version": "1.0.6",
"description": "A utility for applying file diffs programmatically",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@types/bun": "latest",
"@types/diff-match-patch": "^1.0.36",
"@types/tmp": "^0.2.6",
"alvamind-tools": "^1.0.23",
"apply-whole": "^0.1.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/diff": "^7.0.1",
"@types/string-similarity": "^4.0.2",
"alvamind": "^1.0.13",
"diff": "^7.0.0",
"diff-match-patch": "^1.0.5",
"fastest-levenshtein": "^1.0.16",
"string-similarity": "^4.0.4"
},
"scripts": {
"build": "tsc -p tsconfig.build.json || true",
"prepublishOnly": "npm run build",
"test": "bun test",
"source": "generate-source output=documentation.md exclude=dist/,node_modules/,.git/",
"commit": "commit",
"clean": "clean",
"split-code": "split-code source=combined.ts markers=src/,lib/ outputDir=./output",
"publish-npm": "publish-npm patch"
},
"keywords": [
"diff",
"patch",
"file",
"text",
"diff-apply"
],
"author": "pylarco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pylarco/diff-apply.git"
},
"publishConfig": {
"access": "public"
}
}