-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
64
65
66
67
68
69
70
71
{
"name": "@bymbly/api-tools",
"type": "module",
"version": "1.0.0",
"description": "Unified, opinionated CLI wrapper for API specification tooling.",
"license": "Apache-2.0",
"keywords": [
"openapi",
"asyncapi",
"arazzo",
"redocly",
"spectral",
"cli",
"tools",
"api"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bymbly/api-tools.git"
},
"bin": {
"api-tools": "dist/bin/api-tools.js"
},
"scripts": {
"dev": "npm run watch",
"build": "tsc -p tsconfig.build.json && npm run copy:defaults",
"test": "vitest run",
"build:clean": "npm run clean && npm run build",
"pretest": "npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run build:clean",
"watch": "npm run copy:defaults && tsc --watch",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc",
"lint": "npm run lint:md && npm run lint:eslint",
"lint:check": "npm run lint:md:check && npm run lint:eslint:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:md": "markdownlint-cli2 --fix",
"lint:md:check": "markdownlint-cli2",
"lint:eslint": "eslint . --fix",
"lint:eslint:check": "eslint .",
"clean": "npm run clean:dist",
"clean:dist": "rm -rf ./dist",
"copy:defaults": "mkdir -p dist/defaults && cp -a defaults/. dist/defaults/"
},
"//": "react/react/dom in dependencies: not used directly - ensures consistent hoisting for @redocly/cli and @asyncapi/cli. see: https://github.com/bymbly/api-tools/issues/37",
"dependencies": {
"@asyncapi/cli": "6.0.0",
"@commander-js/extra-typings": "14.0.0",
"@redocly/cli": "2.22.1",
"@stoplight/spectral-cli": "6.15.0",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "24.12.0",
"@vitest/ui": "4.1.0",
"eslint": "9.39.4",
"markdownlint-cli2": "0.21.0",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vitest": "4.1.0"
}
}