-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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": "tiny-merge-patch",
"version": "1.0.0",
"description": "JSON Merge Patch (RFC 7396) Implementation",
"packageManager": "pnpm@10.33.0",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@biomejs/biome": "^2.4.9",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@vitest/coverage-v8": "^4.1.2",
"husky": "^9.1.7",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"scripts": {
"clean": "rimraf dist coverage",
"build": "pnpm run clean && tsc -p tsconfig.build.json && mv dist/index.js dist/index.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepublishOnly": "pnpm run build",
"test": "vitest run --coverage --typecheck",
"test:watch": "vitest --typecheck",
"lint": "biome check .",
"format": "biome format --write .",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test",
"check:staged": "pnpm run lint && pnpm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/QuentinRoy/tiny-merge-patch.git"
},
"keywords": [
"JSON",
"merge",
"patch",
"RFC",
"7396"
],
"author": "Quentin Roy <quentin@quentinroy.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/quentinroy/tiny-merge-patch/issues"
},
"homepage": "https://github.com/QuentinRoy/tiny-merge-patch"
}