-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.36 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.36 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "angular-form-scaffolder",
"author": {
"name": "Adilson de Almeida Pedro",
"email": "adilson@almeidapedro.com.br",
"url": "https://adilson.almeidapedro.com.br",
"github": "https://github.com/devremoto",
"twitter": "https://twitter.com/devremoto",
"linkedin": "https://www.linkedin.com/in/adilsonpedro"
},
"displayName": "Angular Form Scaffolder",
"description": "Scaffold Angular reactive forms, template-driven forms, and signal-based forms from TypeScript model classes with automatic dependency management",
"icon": "assets/icon.ico",
"publisher": "devremoto",
"version": "0.1.8",
"categories": [
"Other"
],
"keywords": [
"angular",
"forms",
"scaffolder",
"generator",
"typescript",
"reactive forms",
"signal forms",
"zod",
"yup",
"template driven",
"scaffolding",
"boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/devremoto/angular-form-generator"
},
"engines": {
"vscode": "^1.90.0"
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "angularForm.generate",
"title": "Angular: Scaffold Form from Model"
},
{
"command": "angularForm.generateHere",
"title": "Angular: Scaffold Form from This Model"
},
{
"command": "angularForm.generateJSDoc",
"title": "Angular: Generate JSDoc for Model"
},
{
"command": "angularForm.showMenu",
"title": "Angular Form Scaffolder"
}
],
"menus": {
"explorer/context": [
{
"command": "angularForm.showMenu",
"group": "navigation",
"when": "resourceExtname == .ts"
}
],
"editor/context": [
{
"command": "angularForm.showMenu",
"group": "navigation",
"when": "resourceExtname == .ts"
}
],
"commandPalette": [
{
"command": "angularForm.generate",
"when": "true"
},
{
"command": "angularForm.generateJSDoc",
"when": "true"
}
]
},
"configuration": {
"title": "Angular Form Scaffolder",
"properties": {
"angularFormGenerator.generateModule": {
"type": "boolean",
"default": false,
"description": "Whether to generate an Angular module file along with the form component. When disabled, only the component files (TypeScript, HTML, CSS) will be generated."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"build": "npm run compile",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"esbuild": "^0.25.10",
"eslint": "^9.36.0",
"npm-run-all": "^4.1.5",
"ts-morph": "^22.0.0",
"typescript": "^5.5.4",
"@vscode/vsce": "^3.0.0",
"yup": "^1.7.1",
"zod": "^4.1.11"
}
}