projalf 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -30
  2. package/package.json +32 -4
package/README.md CHANGED
@@ -1,30 +1 @@
1
- # projalf
2
-
3
- Reusable external Projen template for an AWS CDK TypeScript app using npm.
4
-
5
- ## Usage
6
-
7
- Initialize a new project using this template:
8
-
9
- ```bash
10
- npx projen new --from projalf ProjAlfCdkTsApp --name my-cdk-app --cdkVersion 2.156.0
11
- ```
12
-
13
- This generates an AWS CDK v2 TypeScript app configured to use npm and `.projenrc.ts`.
14
-
15
- Options are the same as `awscdk.AwsCdkTypeScriptApp`.
16
-
17
- ## Development
18
-
19
- This repository itself is managed by Projen. Edit `.projenrc.ts` and run:
20
-
21
- ```bash
22
- npm run projen
23
- ```
24
-
25
- To build/test:
26
-
27
- ```bash
28
- npm test
29
- npm run build
30
- ```
1
+ # replace this
package/package.json CHANGED
@@ -1,14 +1,22 @@
1
1
  {
2
2
  "name": "projalf",
3
+ "repository": {
4
+ "type": "git",
5
+ "url": "git@github.com:AlfGoto/projalf.git"
6
+ },
3
7
  "scripts": {
4
8
  "build": "npx projen build",
5
9
  "bump": "npx projen bump",
6
10
  "clobber": "npx projen clobber",
11
+ "compat": "npx projen compat",
7
12
  "compile": "npx projen compile",
8
13
  "default": "npx projen default",
14
+ "docgen": "npx projen docgen",
9
15
  "eject": "npx projen eject",
10
16
  "eslint": "npx projen eslint",
11
17
  "package": "npx projen package",
18
+ "package-all": "npx projen package-all",
19
+ "package:js": "npx projen package:js",
12
20
  "post-compile": "npx projen post-compile",
13
21
  "post-upgrade": "npx projen post-upgrade",
14
22
  "pre-compile": "npx projen pre-compile",
@@ -20,6 +28,11 @@
20
28
  "watch": "npx projen watch",
21
29
  "projen": "npx projen"
22
30
  },
31
+ "author": {
32
+ "name": "Alf",
33
+ "email": "alfgoto@gmail.com",
34
+ "organization": false
35
+ },
23
36
  "devDependencies": {
24
37
  "@stylistic/eslint-plugin": "^2",
25
38
  "@types/jest": "^30.0.0",
@@ -33,20 +46,26 @@
33
46
  "eslint-plugin-import": "^2.32.0",
34
47
  "jest": "^30.0.5",
35
48
  "jest-junit": "^16",
49
+ "jsii": "~5.8.0",
50
+ "jsii-diff": "^1.113.0",
51
+ "jsii-docgen": "^10.5.0",
52
+ "jsii-pacmak": "^1.113.0",
53
+ "jsii-rosetta": "~5.8.0",
36
54
  "projen": "^0.95.2",
37
55
  "ts-jest": "^29.4.1",
38
56
  "ts-node": "^10.9.2",
39
57
  "typescript": "^5.9.2"
40
58
  },
41
- "main": "lib/index.js",
42
- "license": "Apache-2.0",
43
59
  "peerDependencies": {
60
+ "constructs": "^10.4.2",
44
61
  "projen": "^0.95.2"
45
62
  },
63
+ "main": "lib/index.js",
64
+ "license": "Apache-2.0",
46
65
  "publishConfig": {
47
66
  "access": "public"
48
67
  },
49
- "version": "0.0.0",
68
+ "version": "0.0.1",
50
69
  "jest": {
51
70
  "coverageProvider": "v8",
52
71
  "testMatch": [
@@ -93,5 +112,14 @@
93
112
  }
94
113
  },
95
114
  "types": "lib/index.d.ts",
115
+ "stability": "stable",
116
+ "jsii": {
117
+ "outdir": "dist",
118
+ "targets": {},
119
+ "tsc": {
120
+ "outDir": "lib",
121
+ "rootDir": "src"
122
+ }
123
+ },
96
124
  "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
97
- }
125
+ }