-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@algorithm.ts/diff",
"version": "1.0.4",
"description": "Find the diff between of two sequence or string.",
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/diff@1.0.3",
"directory": "packages/diff"
},
"homepage": "https://github.com/guanghechen/algorithm.ts/tree/@algorithm.ts/diff@1.0.3/packages/diff#readme",
"keywords": [
"algorithm",
"diff"
],
"type": "module",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
},
"source": "./src/index.ts",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"license": "MIT",
"files": [
"lib/",
"!lib/**/*.map",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@algorithm.ts/lcs": "workspace:^"
},
"scripts": {
"clean": "rimraf lib",
"build": "rollup -c ../../rollup.config.mjs",
"test": "vitest run --config ../../vitest.config.ts",
"test:coverage": "vitest run --config ../../vitest.config.ts --coverage",
"test:update": "vitest run --config ../../vitest.config.ts -u"
}
}