-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "api-smart-diff",
"version": "1.0.6",
"description": "Generate the diff between two API specifications (OpenAPI, AsyncAPI, GraphApi, JsonSchema)",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"browser": "dist/api-smart-diff.min.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"check": "biome check"
},
"keywords": [
"jsonschema",
"diff",
"merge",
"compare",
"openapi",
"swagger",
"asyncapi",
"graphql",
"graphapi",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/udamir/api-smart-diff"
},
"author": "Damir Yusipov",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@biomejs/biome": "^1.8.3",
"@types/js-yaml": "^4.0.9",
"fast-json-patch": "^3.1.1",
"gqlapi": "^0.5.1",
"graphql": "^16.9.0",
"js-yaml": "^4.1.0",
"rimraf": "^5.0.8",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-progress": "^1.1.2",
"ts-loader": "^8.4.0",
"typescript": "^5.5.3"
},
"dependencies": {
"allof-merge": "^0.6.6",
"json-crawl": "^0.5.3"
}
}