cadl/packages/bundler/package.json

68 строки
1.7 KiB
JSON

{
"name": "@typespec/bundler",
"version": "0.1.9",
"author": "Microsoft Corporation",
"description": "Package to bundle a TypeSpec library.",
"homepage": "https://typespec.io",
"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",
"exports": {
".": "./dist/src/index.js",
"./vite": "./dist/src/vite/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"bundle": "node ./dist/src/cli.js",
"clean": "rimraf ./dist ./temp",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"files": [
"lib/*.tsp",
"dist/**",
"!dist/test/**"
],
"dependencies": {
"@rollup/plugin-alias": "~5.1.1",
"@rollup/plugin-commonjs": "~28.0.0",
"@rollup/plugin-json": "~6.1.0",
"@rollup/plugin-multi-entry": "~6.0.1",
"@rollup/plugin-node-resolve": "~15.3.0",
"@rollup/plugin-virtual": "~3.0.2",
"@typespec/compiler": "workspace:~",
"picocolors": "~1.1.0",
"rollup": "~4.24.0",
"yargs": "~17.7.2"
},
"devDependencies": {
"@types/node": "~22.7.5",
"@types/yargs": "~17.0.33",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"c8": "^10.1.2",
"rimraf": "~6.0.1",
"typescript": "~5.6.3",
"vite": "^5.4.8",
"vitest": "^2.1.2"
}
}