Files
alfresco-ng2-components/lib/cli/package.json
Denys Vuika a9efe36e5f AAE-40427 Replace shelljs with native node api (#11404)
* Replace shelljs with native node api

* Refactor command execution in audit and changelog scripts to use spawnSync for improved security and error handling
2025-11-28 12:57:49 +00:00

41 lines
1.2 KiB
JSON

{
"name": "@alfresco/adf-cli",
"description": "Alfresco ADF cli and utils",
"version": "8.3.0",
"author": "Hyland Software, Inc. and its affiliates",
"bin": {
"adf-cli": "bin/adf-cli",
"adf": "bin/adf-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alfresco/alfresco-ng2-components.git"
},
"bugs": {
"url": "https://github.com/Alfresco/alfresco-ng2-components/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"develop": "tsc -p tsconfig.json --watch",
"dist": "rm -rf ../../dist/libs/cli && npm run build && cp -R ./bin ../../dist/libs/cli && cp -R ./resources ../../dist/libs/cli && cp -R ./templates ../../dist/libs/cli && cp ./package.json ../../dist/libs/cli",
"link": "npm run dist && cd ../../dist/libs/cli && npm link",
"unlink": "cd ../../dist/libs/cli && npm unlink"
},
"dependencies": {
"@alfresco/js-api": ">=9.2.0",
"ejs": "^3.1.10",
"license-checker": "^25.0.1",
"node-fetch": "^2.7.0",
"spdx-license-list": "^5.0.0"
},
"keywords": [
"alfresco-component"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/node": "^20.1.7",
"typescript": "^4.9.5"
}
}