-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.81 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.81 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cdd-ts",
"version": "0.0.1",
"description": "OpenAPI ↔ Angular (TypeScript, HTML)",
"keywords": [
"openapi",
"cdd",
"angular",
"codegen",
"parser",
"emitter",
"compiler"
],
"homepage": "https://github.com/offscale/cdd-ts#readme",
"bugs": {
"url": "https://github.com/offscale/cdd-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offscale/cdd-ts.git"
},
"license": "MIT",
"author": "Samuel Marks <807580+SamuelMarks@users.noreply.github.com>",
"type": "module",
"bin": {
"cdd-ts": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"scripts": {
"check:types": "type-coverage --project ./tsconfig.json --detail",
"clean": "rm -rf dist docs coverage .vitest-cache node_modules/.vite",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && chmod +x dist/cli.js",
"docs": "typedoc",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"prepublishOnly": "npm run build",
"start": "node dist/cli.js",
"test": "vitest run --run",
"test:coverage": "vitest run --run --coverage",
"prepare": "husky install",
"format": "eslint --fix 'src/**/*.ts' 'tests/**/*.ts'",
"eslint": "eslint 'src/**/*.ts' 'tests/**/*.ts'"
},
"dependencies": {
"commander": "^14",
"js-yaml": "^4.1.0",
"path-browserify": "^1.0.1",
"ts-morph": "^27.0"
},
"devDependencies": {
"@angular/common": "^20.3.12",
"@angular/compiler": "^20.3.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24",
"@types/swagger-schema-official": "^2.0.25",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-istanbul": "^4.0.3",
"@vitest/coverage-v8": "^4.0.13",
"esbuild": "^0.27.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unicorn": "^62.0.0",
"glob": "^11.0",
"husky": "^8.0.0",
"prettier": "^3.6.2",
"swagger-schema-official": "^2.0.0-bab6bed",
"tsc-alias": "^1.8.16",
"type-coverage": "^2.29.7",
"typedoc": "^0.28.14",
"typescript": "^5.9",
"vitest": "^4.0"
},
"engines": {
"node": ">=18.0.0"
}
}