-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 KB
/
package.json
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
{
"name": "@studion/infra-code-blocks",
"version": "0.7.0",
"description": "Studion common infra components",
"keywords": [
"infrastructure",
"Pulumi",
"components",
"Studion"
],
"homepage": "https://github.com/ExtensionEngine/infra-code-blocks#readme",
"bugs": {
"url": "https://github.com/ExtensionEngine/infra-code-blocks/issues"
},
"repository": "git+https://github.com/ExtensionEngine/infra-code-blocks.git",
"license": "MIT",
"author": {
"name": "Studion",
"email": "info@gostudion.com",
"url": "https://www.gostudion.com"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"format": "prettier -w .",
"release": "npm run build && release-it",
"test": ""
},
"prettier": "@studion/prettier-config",
"dependencies": {
"@pulumi/aws": "^6.66.3",
"@pulumi/awsx": "^2.21.0",
"@pulumi/pulumi": "^3.146.0",
"@pulumi/random": "^4.17.0",
"@upstash/pulumi": "^0.3.14"
},
"devDependencies": {
"@studion/prettier-config": "^0.1.0",
"@types/node": "^22",
"prettier": "^3.4.2",
"release-it": "^18.1.1",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"github": {
"release": true
}
}
}