-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.79 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
72
73
74
{
"name": "@openapi-qraft/plugin",
"version": "2.15.0-beta.7",
"packageManager": "yarn@4.0.2",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "yarn build --watch --noEmitOnError false",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0",
"clean": "rimraf dist/",
"write-package-version-file": "yarn exec ../../write-package-version-file.sh"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"dependencies": {
"@qraft/plugin": "workspace:*",
"@redocly/openapi-core": "^1.34.11",
"ansi-colors": "^4.1.3",
"camelcase": "^8.0.0",
"commander": "^14.0.3",
"openapi-typescript": "^7.13.0",
"ora": "^9.3.0",
"picomatch": "^4.0.4"
},
"devDependencies": {
"@openapi-qraft/eslint-config": "workspace:*",
"@openapi-qraft/test-fixtures": "workspace:*",
"@types/node": "^22.19.17",
"@types/picomatch": "^4.0.3",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"memfs": "^4.57.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"files": [
"dist",
"src",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!src/**/__snapshots__/**",
"!src/**/*.test.*",
"!src/**/*.spec.*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAPI-Qraft/openapi-qraft.git",
"directory": "packages/openapi-plugin"
}
}