@azure-tools/typespec-client-generator-core
Version:
TypeSpec Data Plane Generation library
97 lines • 3.07 kB
JSON
{
"name": "@azure-tools/typespec-client-generator-core",
"version": "0.59.0",
"author": "Microsoft Corporation",
"description": "TypeSpec Data Plane Generation library",
"homepage": "https://azure.github.io/typespec-azure",
"readme": "https://github.com/Microsoft/typespec/blob/main/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/typespec-azure.git"
},
"bugs": {
"url": "https://github.com/Azure/typespec-azure/issues"
},
"keywords": [
"typespec",
"sdk",
"ClientGenerator"
],
"main": "dist/src/index.js",
"tspMain": "./lib/main.tsp",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"typespec": "./lib/main.tsp",
"default": "./dist/src/index.js"
},
"./testing": {
"types": "./dist/src/testing/index.d.ts",
"default": "./dist/src/testing/index.js"
}
},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"files": [
"lib/*.tsp",
"dist/**",
"!dist/test/**"
],
"dependencies": {
"change-case": "~5.4.4",
"pluralize": "^8.0.0",
"yaml": "~2.8.0"
},
"peerDependencies": {
"@azure-tools/typespec-azure-core": "^0.59.0",
"@typespec/compiler": "^1.3.0",
"@typespec/events": "^0.73.0",
"@typespec/openapi": "^1.3.0",
"@typespec/http": "^1.3.0",
"@typespec/rest": "^0.73.0",
"@typespec/sse": "^0.73.0",
"@typespec/streams": "^0.73.0",
"@typespec/versioning": "^0.73.0",
"@typespec/xml": "^0.73.0"
},
"devDependencies": {
"@types/node": "~24.1.0",
"@types/pluralize": "^0.0.33",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/ui": "^3.1.2",
"c8": "^10.1.3",
"rimraf": "~6.0.1",
"typescript": "~5.8.2",
"vitest": "^3.1.2",
"@azure-tools/typespec-azure-core": "^0.59.0",
"@azure-tools/typespec-azure-resource-manager": "^0.59.0",
"@typespec/events": "^0.73.0",
"@typespec/compiler": "^1.3.0",
"@typespec/library-linter": "^0.73.0",
"@typespec/openapi": "^1.3.0",
"@typespec/http": "^1.3.0",
"@typespec/prettier-plugin-typespec": "^1.3.0",
"@typespec/rest": "^0.73.0",
"@typespec/sse": "^0.73.0",
"@typespec/streams": "^0.73.0",
"@typespec/tspd": "^0.72.2",
"@typespec/xml": "^0.73.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "npm run gen-extern-signature && tsc -p . && npm run lint-typespec-library",
"watch": "tsc -p . --watch",
"gen-extern-signature": "tspd --enable-experimental gen-extern-signature .",
"lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit",
"test": "vitest run",
"test:watch": "vitest -w",
"test:ui": "vitest --ui",
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix ",
"regen-docs": "tspd doc . --enable-experimental --output-dir ../../website/src/content/docs/docs/libraries/typespec-client-generator-core/reference"
}
}