microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/emitter-framework/package.json
61lines · modecode
| 1 | { |
| 2 | "name": "@typespec/emitter-framework", |
| 3 | "version": "0.8.0", |
| 4 | "type": "module", |
| 5 | "main": "dist/index.js", |
| 6 | "scripts": { |
| 7 | "build": "alloy build", |
| 8 | "clean": "rimraf ./dist", |
| 9 | "format": "prettier . --write", |
| 10 | "watch": "alloy build --watch", |
| 11 | "test": "vitest run", |
| 12 | "test:ui": "vitest --ui", |
| 13 | "test:watch": "vitest -w", |
| 14 | "test:ci": "vitest run --coverage --reporter=junit --reporter=default", |
| 15 | "lint": "eslint . --max-warnings=0", |
| 16 | "lint:fix": "eslint . --fix" |
| 17 | }, |
| 18 | "exports": { |
| 19 | ".": { |
| 20 | "import": "./dist/src/core/index.js" |
| 21 | }, |
| 22 | "./typescript": { |
| 23 | "import": "./dist/src/typescript/index.js" |
| 24 | }, |
| 25 | "./testing": { |
| 26 | "import": "./dist/src/testing/index.js" |
| 27 | } |
| 28 | }, |
| 29 | "keywords": [], |
| 30 | "author": "", |
| 31 | "license": "MIT", |
| 32 | "description": "", |
| 33 | "peerDependencies": { |
| 34 | "@alloy-js/core": "^0.17.0", |
| 35 | "@alloy-js/typescript": "^0.17.0", |
| 36 | "@typespec/compiler": "workspace:^", |
| 37 | "@typespec/http": "workspace:^", |
| 38 | "@typespec/rest": "workspace:^" |
| 39 | }, |
| 40 | "devDependencies": { |
| 41 | "@alloy-js/cli": "^0.17.0", |
| 42 | "@alloy-js/rollup-plugin": "^0.1.0", |
| 43 | "@alloy-js/core": "^0.17.0", |
| 44 | "@alloy-js/typescript": "^0.17.0", |
| 45 | "@types/minimist": "^1.2.5", |
| 46 | "@typespec/compiler": "workspace:^", |
| 47 | "@typespec/http": "workspace:^", |
| 48 | "@typespec/rest": "workspace:^", |
| 49 | "concurrently": "^9.1.2", |
| 50 | "minimist": "^1.2.8", |
| 51 | "prettier": "~3.5.3", |
| 52 | "web-tree-sitter": "^0.25.4", |
| 53 | "tree-sitter-c-sharp": "^0.23.0", |
| 54 | "tree-sitter-java": "^0.23.2", |
| 55 | "tree-sitter-javascript": "^0.23.0", |
| 56 | "tree-sitter-python": "^0.23.2", |
| 57 | "tree-sitter-typescript": "^0.23.0", |
| 58 | "typescript": "~5.8.2", |
| 59 | "vitest": "^3.1.2" |
| 60 | } |
| 61 | } |
| 62 | |