@langri-sha/projen-project 0.9.0 → 0.11.0
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.
- package/CHANGELOG.json +301 -1
- package/CHANGELOG.md +65 -2
- package/{lib → dist}/index.d.ts +45 -16
- package/dist/index.d.ts.map +1 -0
- package/{lib → dist}/index.js +205 -67
- package/dist/index.js.map +1 -0
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/index.d.ts.map +1 -0
- package/dist/lib/index.js +3 -0
- package/dist/lib/index.js.map +1 -0
- package/dist/lib/node-package.d.ts +19 -0
- package/dist/lib/node-package.d.ts.map +1 -0
- package/dist/lib/node-package.js +43 -0
- package/dist/lib/node-package.js.map +1 -0
- package/license +4 -14
- package/package.json +85 -20
- package/src/index.ts +322 -90
- package/src/lib/index.ts +1 -0
- package/src/lib/node-package.ts +50 -0
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
- package/lib/lib/index.d.ts +0 -2
- package/lib/lib/index.d.ts.map +0 -1
- package/lib/lib/index.js +0 -2
- package/lib/lib/index.js.map +0 -1
- /package/{lib → dist}/lib/projenrc.d.ts +0 -0
- /package/{lib → dist}/lib/projenrc.d.ts.map +0 -0
- /package/{lib → dist}/lib/projenrc.js +0 -0
- /package/{lib → dist}/lib/projenrc.js.map +0 -0
package/package.json
CHANGED
|
@@ -1,36 +1,101 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langri-sha/projen-project",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
|
+
"bugs": {
|
|
5
|
+
"url": "https://github.com/langri-sha/langri-sha.com/issues"
|
|
6
|
+
},
|
|
7
|
+
"repository": {
|
|
8
|
+
"url": "git+https://github.com/langri-sha/langri-sha.com.git",
|
|
9
|
+
"path": "/packages/projen-project"
|
|
10
|
+
},
|
|
4
11
|
"license": "MIT",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Filip Dupanović",
|
|
14
|
+
"email": "filip.dupanovic@gmail.com",
|
|
15
|
+
"url": "https://langri-sha.com",
|
|
16
|
+
"organization": false
|
|
17
|
+
},
|
|
5
18
|
"type": "module",
|
|
6
|
-
"main": "
|
|
19
|
+
"main": "dist/index.js",
|
|
7
20
|
"scripts": {
|
|
8
|
-
"prepublishOnly": "rm -rf
|
|
21
|
+
"prepublishOnly": "rm -rf dist; tsc --project tsconfig.build.json"
|
|
9
22
|
},
|
|
10
23
|
"dependencies": {
|
|
11
|
-
"@langri-sha/projen-
|
|
12
|
-
"@langri-sha/projen-
|
|
13
|
-
"@langri-sha/projen-
|
|
14
|
-
"@langri-sha/projen-
|
|
15
|
-
"@langri-sha/projen-
|
|
16
|
-
"@langri-sha/projen-
|
|
17
|
-
"@langri-sha/projen-
|
|
18
|
-
"@langri-sha/projen-
|
|
19
|
-
"@langri-sha/projen-
|
|
20
|
-
"
|
|
24
|
+
"@langri-sha/projen-babel": "0.2.0",
|
|
25
|
+
"@langri-sha/projen-beachball": "0.3.0",
|
|
26
|
+
"@langri-sha/projen-codeowners": "0.4.0",
|
|
27
|
+
"@langri-sha/projen-editorconfig": "0.5.0",
|
|
28
|
+
"@langri-sha/projen-eslint": "0.2.0",
|
|
29
|
+
"@langri-sha/projen-husky": "0.3.0",
|
|
30
|
+
"@langri-sha/projen-jest-config": "0.3.0",
|
|
31
|
+
"@langri-sha/projen-license": "0.3.0",
|
|
32
|
+
"@langri-sha/projen-lint-staged": "0.2.0",
|
|
33
|
+
"@langri-sha/projen-lint-synthesized": "0.4.0",
|
|
34
|
+
"@langri-sha/projen-pnpm-workspace": "0.2.0",
|
|
35
|
+
"@langri-sha/projen-prettier": "0.3.0",
|
|
36
|
+
"@langri-sha/projen-renovate": "0.4.0",
|
|
37
|
+
"@langri-sha/projen-swcrc": "0.1.0",
|
|
38
|
+
"@langri-sha/projen-typescript-config": "0.4.0",
|
|
39
|
+
"ramda": "0.30.1"
|
|
21
40
|
},
|
|
22
41
|
"devDependencies": {
|
|
23
|
-
"@langri-sha/
|
|
24
|
-
"@langri-sha/
|
|
25
|
-
"@types/ramda": "0.30.
|
|
26
|
-
"projen": "0.81.15"
|
|
42
|
+
"@langri-sha/tsconfig": "0.10.0",
|
|
43
|
+
"@langri-sha/vitest": "0.1.0",
|
|
44
|
+
"@types/ramda": "0.30.1"
|
|
27
45
|
},
|
|
28
46
|
"peerDependencies": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
47
|
+
"@babel/core": "^7.8.0",
|
|
48
|
+
"@swc-node/register": "^1.0.0",
|
|
49
|
+
"@swc/core": "^1.6.0",
|
|
50
|
+
"@types/babel__core": "^7.8.0",
|
|
51
|
+
"beachball": "^2.0.0",
|
|
52
|
+
"eslint": "^9.0.0",
|
|
53
|
+
"husky": "^9.0.1",
|
|
54
|
+
"jest": "^28.0.0 || ^29.0.0",
|
|
55
|
+
"lint-staged": "^15.0.0",
|
|
56
|
+
"prettier": "^3.0.0",
|
|
57
|
+
"projen": "^0.82.0",
|
|
58
|
+
"ts-node": "^10.0.0",
|
|
59
|
+
"typescript": "^5.5.0"
|
|
60
|
+
},
|
|
61
|
+
"peerDependenciesMeta": {
|
|
62
|
+
"@babel/core": {
|
|
63
|
+
"optional": true
|
|
64
|
+
},
|
|
65
|
+
"@swc-node/register": {
|
|
66
|
+
"optional": true
|
|
67
|
+
},
|
|
68
|
+
"@swc/core": {
|
|
69
|
+
"optional": true
|
|
70
|
+
},
|
|
71
|
+
"@types/babel__core": {
|
|
72
|
+
"optional": true
|
|
73
|
+
},
|
|
74
|
+
"beachball": {
|
|
75
|
+
"optional": true
|
|
76
|
+
},
|
|
77
|
+
"eslint": {
|
|
78
|
+
"optional": true
|
|
79
|
+
},
|
|
80
|
+
"husky": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"jest": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"lint-staged": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"prettier": {
|
|
90
|
+
"optional": true
|
|
91
|
+
},
|
|
92
|
+
"ts-node": {
|
|
93
|
+
"optional": true
|
|
94
|
+
}
|
|
31
95
|
},
|
|
32
96
|
"publishConfig": {
|
|
33
97
|
"access": "public"
|
|
34
98
|
},
|
|
35
|
-
"
|
|
99
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.mts and run \"npx projen\".",
|
|
100
|
+
"types": "dist/index.d.ts"
|
|
36
101
|
}
|