-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 KB
/
package.json
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
{
"name": "mini-rfc6902",
"version": "0.2.3",
"description": "TypeScript implementation of RFC6902 with mini-rfc6902 format support",
"license": "MIT",
"author": "Jake Holland",
"homepage": "https://github.com/hollandjake/mini-rfc6902#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hollandjake/mini-rfc6902.git"
},
"bugs": {
"url": "https://github.com/hollandjake/mini-rfc6902/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"clean": "gts clean",
"clean:build": "pnpm clean && pnpm build",
"lint": "gts lint",
"lint:fix": "gts fix",
"test": "vitest run",
"test:watch": "vitest"
},
"types": "./dist/index.d.ts",
"dependencies": {
"just-clone": "^6.2.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitest/coverage-istanbul": "^2.1.6",
"gts": "^5.3.1",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.6"
},
"keywords": [
"diff",
"json patch",
"rfc6902"
],
"engines": {
"node": ">=10.4.0"
},
"readme": "./README.md"
}