-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
67
68
69
70
71
72
73
{
"name": "@azure-tools/rest-api-diff",
"version": "0.2.0",
"author": "Microsoft Corporation",
"description": "Compares two Swagger definitions to identify relevant differences.",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": "./dist/src/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node scripts/inject-version.mjs && npm run clean && npm run build:tsc",
"build:tsc": "tsc",
"clean": "rimraf ./dist ./temp ./types",
"prepack": "npm run build",
"purge": "rimraf .node_modules package-lock.json",
"test": "vitest",
"rest-api-diff": "node cmd/rest-api-diff.js",
"watch": "tsc -p . --watch"
},
"bin": {
"rest-api-diff": "cmd/rest-api-diff.js"
},
"files": [
"dist/**",
"!dist/test/**",
"cmd/rest-api-diff.js"
],
"devDependencies": {
"@azure-tools/typespec-azure-resource-manager": ">=0.44.0, <1.0.0",
"@azure/avocado": "^0.9.1",
"@types/deep-diff": "^1.0.5",
"@types/diff": "^7.0.0",
"@types/node": "^20.14.7",
"@types/yargs": "^17.0.32",
"@typespec/compiler": ">=0.57.0, <1.0.0",
"@typespec/http": ">=0.57.0, <1.0.0",
"@typespec/openapi": ">=0.57.0, <1.0.0",
"@typespec/openapi3": ">=0.57.0, <1.0.0",
"@typespec/rest": ">=0.57.0, <1.0.0",
"@typespec/versioning": ">=0.57.0, <1.0.0",
"@vitest/coverage-v8": "^2.1.0",
"openapi-types": "^1.0.0",
"prettier": "~3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vitest": "^2.1.3"
},
"dependencies": {
"@azure-tools/typespec-autorest": ">=0.44.0, <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.44.0, <1.0.0",
"acorn": "^8.12.0",
"acorn-walk": "^8.3.3",
"arg": "^4.1.3",
"create-require": "^1.1.1",
"deep-diff": "^1.0.2",
"diff": "^7.0.0",
"diff2html": "^3.4.0",
"dotenv": "^16.4.5",
"make-error": "^1.3.6",
"undici-types": "^5.26.5",
"v8-compile-cache-lib": "^3.0.1",
"yaml": "^2.7.0",
"yargs": "^17.7.2",
"yn": "^3.1.1"
}
}