-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 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
{
"name": "@drunk-pulumi/cloudflare-components",
"version": "0.0.1",
"description": "The custom components for Pulumi Cloudflare",
"main": "index.js",
"types": "index.d.ts",
"pulumi": {
"resource": false,
"name": "@drunk-pulumi/cloudflare-components"
},
"repository": {
"type": "git",
"url": "https://github.com/baoduy/drunk-pulumi-cloudflare-components.git"
},
"scripts": {
"fastBuild": "cross-env NODE_ENV=production && NODE_OPTIONS=\"--max-old-space-size=4092\" npx tsc",
"build": "pnpm run update-tsconfig && pnpm run fastBuild && npm run copy-pkg",
"copy-pkg": "ts-node ./.tasks/npm-package.ts && cpy README.md bin/ && cpy PulumiPlugin.yaml bin/",
"update-tsconfig": "ts-node ./.tasks/update-tsconfig.ts",
"update": "npx npm-check-updates -u && pnpm install",
"test": "jest",
"docs": "ts-node ./.tasks/generate-docs.ts"
},
"keywords": [],
"author": "Steven Hoang",
"license": "MIT",
"dependencies": {
"@drunk-pulumi/azure-components": "v1.1.20",
"@pulumi/cloudflare": "^6.12.0",
"@pulumi/pulumi": "^3.215.0",
"@pulumi/random": "^4.18.5",
"cloudflare": "^5.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/netmask": "^2.0.6",
"@types/node": "25.0.6",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"cpy-cli": "^6.0.0",
"cross-env": "^10.1.0",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
]
}
}