-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"name": "ng-openapi-gen",
"version": "1.0.5",
"license": "MIT",
"author": "Cyclos development team",
"description": "An OpenAPI 3.0 and 3.1 codegen for Angular 16+",
"keywords": [
"angular",
"openapi",
"codegen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyclosproject/ng-openapi-gen.git"
},
"private": true,
"bin": {
"ng-openapi-gen": "lib/index.js"
},
"main": "lib/ng-openapi-gen.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint 'lib/**' 'test/*.ts'",
"compile": "tsc --project tsconfig.build.json && ncp \"LICENSE\" dist && ncp \"README.md\" \"dist/README.md\" && ncp \"templates\" \"dist/templates\" && ncp \"ng-openapi-gen-schema.json\" \"dist/ng-openapi-gen-schema.json\" && node scripts/prepare-dist-package.js && rimraf \"dist/test\"",
"build": "npm run lint && npm run compile && npm test"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^14.2.1",
"argparse": "^2.0.1",
"eol": "^0.10.0",
"fs-extra": "^11.3.2",
"handlebars": "^4.7.8",
"jsesc": "^3.1.0",
"openapi-types": "^12.1.3",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@angular/core": ">=16.0.0",
"rxjs": ">=6.5.0"
},
"devDependencies": {
"@types/argparse": "^2.0.17",
"@types/fs-extra": "^11.0.4",
"@types/jsesc": "^3.0.3",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"eslint-plugin-jsdoc": "^61.1.5",
"vitest": "^3.2.4",
"@vitest/ui": "^3.2.4",
"ncp": "^2.0.0",
"replace-in-file": "^8.3.0",
"rimraf": "^6.0.1",
"typescript-parser": "^2.6.1",
"typescript": "~5.9.3"
}
}