-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 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
{
"name": "node-diff3",
"version": "3.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhousel/node-diff3.git"
},
"description": "A JavaScript module for text diffing and three-way-merge.",
"contributors": [
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)"
],
"keywords": [
"diff",
"diff3",
"diffutils",
"gnu",
"javascript",
"merge",
"patch"
],
"files": [
"dist/",
"src/"
],
"type": "module",
"exports": {
"bun": "./src/diff3.mjs",
"types": "./src/diff3.d.ts",
"import": "./dist/diff3.mjs",
"require": "./dist/diff3.cjs",
"browser": "./dist/diff3.iife.js"
},
"scripts": {
"all": "bun run --sequential clean lint build test",
"clean": "bun ./scripts/clean.ts",
"build": "bun run --parallel 'build:*'",
"build:js": "bun ./scripts/build_js.ts",
"build:ts": "tsc",
"lint": "eslint ./scripts ./src ./test",
"test": "bun test --dots --coverage ./test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.11",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"typescript-eslint": "^8.57.1",
"typescript": "^5.9.3"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.10"
}
}