armpit
Version:
Another resource manager programming interface toolkit.
56 lines (55 loc) • 1.34 kB
JSON
{
"name": "armpit",
"version": "0.2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "shx rm -rf ./dist/**/*",
"build": "run-s -l clean build:*",
"build:esm": "tsc",
"prepack": "shx cp ../LICENSE . && shx cp ../README.md .",
"postpack": "shx rm LICENSE && shx rm README.md",
"watch": "npm-run-all -l clean --parallel watch:*",
"watch:esm": "tsc -w",
"lint": "tsc",
"test": "vitest"
},
"description": "Another resource manager programming interface toolkit.",
"keywords": [
"arm",
"azure",
"azure-cli",
"az-cli"
],
"author": "aarondandy",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/node": "^24.0.3",
"npm-run-all": "^4.1.5",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@azure/arm-network": "^34.0.0",
"@azure/arm-resources": "^6.1.0",
"@azure/arm-resources-subscriptions": "^2.1.0",
"@azure/identity": "^4.10.1",
"execa": "^9.6.0",
"uuid": "^11.1.0"
}
}