forked from rapi-doc/RapiDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.4 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
74
75
76
77
78
79
80
81
82
83
{
"name": "rapidoc",
"version": "9.3.7",
"description": "RapiDoc - Open API spec viewer with built in console",
"author": "Mrinmoy Majumdar <[email protected]>",
"homepage": "https://rapidocweb.com",
"repository": {
"type": "git",
"url": "https://github.com/rapi-doc/RapiDoc.git"
},
"license": "MIT",
"keywords": [
"OpenAPI",
"OpenAPI Specification",
"Swagger",
"JSON-Schema",
"API",
"REST",
"documentation",
"Custom Element",
"Web Component",
"rapidoc",
"swagger",
"swagger ui",
"openapi ui",
"openapi themes",
"openapi viewer",
"openapi renderer",
"openapi explorer",
"swagger themes"
],
"main": "dist/rapidoc-min.js",
"module": "dist/rapidoc-min.js",
"mode": "production",
"dependencies": {
"@apitools/openapi-parser": "0.0.33",
"base64-arraybuffer": "^1.0.2",
"buffer": "^6.0.3",
"lit": "^3.2.0",
"marked": "4.3.0",
"prismjs": "^1.29.0",
"randexp": "^0.5.3",
"xml-but-prettier": "^1.0.1"
},
"scripts": {
"build": "NODE_ENV=production webpack --mode=production",
"build_windows": "set NODE_ENV='production'&&webpack --mode=production",
"serve": "webpack serve --mode=development",
"serve-prod": "webpack serve --mode=production",
"serve1": "node --trace-deprecation ./node_modules/webpack/bin/webpack serve",
"lint": "./node_modules/eslint/bin/eslint.js ./src/**",
"lint-fix": "./node_modules/eslint/bin/eslint.js --fix ./src/**"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.2.1",
"babel-plugin-template-html-minifier": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.9",
"eslint-plugin-import": "^2.30.0",
"eslint-webpack-plugin": "4.2.0",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.6.0",
"inspectpack": "^4.7.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.11.1"
},
"engines": {
"node": ">=18.16.0"
}
}