-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "@proangular/pro-ject",
"version": "21.0.0",
"description": "A lightweight Node CLI that guides `ng new` and scaffolds an Angular 20-21+ workspace with opinionated structure and best-practice defaults.",
"author": "Pro Angular <webmaster@proangular.com>",
"private": false,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc && node .scripts/copy-templates-to-dist.mjs",
"start": "npm run build && node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"execa": "^9.4.0",
"prompts": "^2.4.2",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"contributors": [
{
"name": "Cody Tolene",
"email": "webmaster@codytolene.com",
"url": "https://www.codytolene.com"
}
],
"keywords": [
"angular",
"cli",
"wizard",
"scaffold",
"ng",
"project",
"workspace",
"proangular",
"material"
],
"bin": {
"pro-ject": "dist/index.js"
},
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ProAngular/pro-ject.git"
},
"homepage": "https://www.proangular.com",
"bugs": {
"url": "https://github.com/ProAngular/pro-ject/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/proangular"
}
}