71 строка
2.1 KiB
JSON
71 строка
2.1 KiB
JSON
{
|
|
"name": "@typespec/http",
|
|
"version": "0.59.0",
|
|
"author": "Microsoft Corporation",
|
|
"description": "TypeSpec HTTP protocol binding",
|
|
"homepage": "https://github.com/microsoft/typespec",
|
|
"docusaurusWebsite": "https://typespec.io/docs",
|
|
"readme": "https://github.com/microsoft/typespec/blob/main/README.md",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/microsoft/typespec.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/microsoft/typespec/issues"
|
|
},
|
|
"keywords": [
|
|
"typespec"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/src/index.js",
|
|
"tspMain": "lib/http.tsp",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"default": "./dist/src/index.js"
|
|
},
|
|
"./testing": {
|
|
"types": "./dist/src/testing/index.d.ts",
|
|
"default": "./dist/src/testing/index.js"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.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 ../../docs/libraries/http/reference"
|
|
},
|
|
"files": [
|
|
"lib/*.tsp",
|
|
"dist/**",
|
|
"!dist/test/**"
|
|
],
|
|
"peerDependencies": {
|
|
"@typespec/compiler": "workspace:~"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "~18.11.19",
|
|
"@typespec/compiler": "workspace:~",
|
|
"@typespec/library-linter": "workspace:~",
|
|
"@typespec/tspd": "workspace:~",
|
|
"@vitest/coverage-v8": "^2.0.4",
|
|
"@vitest/ui": "^2.0.4",
|
|
"c8": "^10.1.2",
|
|
"rimraf": "~6.0.1",
|
|
"typescript": "~5.5.4",
|
|
"vitest": "^2.0.4"
|
|
}
|
|
}
|