-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "@drunk-pulumi/intune-components",
"version": "0.0.1",
"description": "The custom components for Pulumi Microsoft Intune resources.",
"main": "index.js",
"types": "index.d.ts",
"pulumi": {
"resource": false,
"name": "@drunk-pulumi/intune-components"
},
"repository": {
"type": "git",
"url": "https://github.com/baoduy/drunk-pulumi-intune-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": {
"@azure/identity": "^4.13.0",
"@microsoft/microsoft-graph-types-beta": "0.44.0-preview",
"@pulumi/pulumi": "^3.215.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.23",
"@types/node": "25.0.6",
"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"
]
}
}