-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "adonis-autoswagger",
"version": "3.63.0",
"description": "Auto-Generate swagger docs for AdonisJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "watchexec -e ts -- tsc",
"build": "tsc",
"prepare": "npm run build"
},
"author": "Adis Durakovic <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ad-on-is/adonis-autoswagger"
},
"license": "MIT",
"dependencies": {
"@vinejs/vine": "^2.1.0",
"abstract-syntax-tree": "^2.20.5",
"change-case": "^4.1.2",
"espree": "^9.3.1",
"extract-comments": "^1.1.0",
"http-status-code": "^2.1.0",
"json-to-pretty-yaml": "^1.2.2",
"lodash": "^4.17.21",
"parse-imports": "^1.1.2",
"typescript": "^5.3.3",
"typescript-parser": "^2.6.1"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4"
},
"files": [
"/dist"
],
"prettier": {
"trailingComma": "es5",
"semi": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always"
},
"packageManager": "[email protected]"
}