@autorest/cadl
Version:
AutoRest Cadl plugin
66 lines • 2.04 kB
JSON
{
"name": "@autorest/cadl",
"version": "0.3.0",
"description": "AutoRest Cadl plugin",
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.git"
},
"keywords": [
"AutoRest",
"ModelerFour"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest.modelerfour/issues"
},
"homepage": "https://github.com/Azure/autorest.modelerfour/tree/master/modelerfour#readme",
"readme": "https://github.com/Azure/autorest.modelerfour/tree/master/modelerfour/readme.md",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash": "~4.14.168",
"@types/node": "~20.9.0",
"@types/webpack": "~5.28.5",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"chalk": "^4.1.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-unicorn": "~49.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"lodash": "~4.17.20",
"prettier": "~3.1.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.19",
"ts-jest": "^29.0.3",
"ts-loader": "~9.5.1",
"typescript": "~5.2.2"
},
"dependencies": {
"@cadl-lang/compiler": "^0.37.0",
"@autorest/extension-base": "~3.6.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"start": "node --max_old_space_size=4096 ./dist/main.js",
"debug": "node --max_old_space_size=4096 --inspect-brk=localhost:9229 ./dist/main.js",
"lint:fix": "eslint ./src --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"watch": "tsc -p tsconfig.build.json --watch",
"build": "tsc -p tsconfig.build.json",
"build:prod": "npm run build",
"test": "echo 'no tests'",
"test:ci": "echo 'no tests'"
}
}