microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-8106

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/asset-emitter/package.json

57lines · modecode

1{
2 "name": "@typespec/asset-emitter",
3 "version": "0.72.1",
4 "author": "Microsoft Corporation",
5 "description": "TypeSpec Asset Emitter, this is to be replaced by the new emitter framework",
6 "homepage": "https://typespec.io",
7 "readme": "https://github.com/microsoft/typespec/blob/main/packages/asset-emitter/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/microsoft/typespec.git"
12 },
13 "bugs": {
14 "url": "https://github.com/microsoft/typespec/issues"
15 },
16 "keywords": [
17 "typespec"
18 ],
19 "type": "module",
20 "exports": {
21 ".": {
22 "import": "./dist/src/index.js"
23 }
24 },
25 "engines": {
26 "node": ">=20.0.0"
27 },
28 "scripts": {
29 "clean": "rimraf ./dist ./temp",
30 "build": "tsc -p .",
31 "watch": "tsc -p . --watch",
32 "test": "vitest run",
33 "test:watch": "vitest -w",
34 "test:ui": "vitest --ui",
35 "lint": "eslint . --ext .ts --max-warnings=0",
36 "lint:fix": "eslint . --fix --ext .ts",
37 "api-extractor": "api-extractor run --local --verbose"
38 },
39 "files": [
40 "lib/*.tsp",
41 "dist/**",
42 "!dist/test/**"
43 ],
44 "peerDependencies": {
45 "@typespec/compiler": "workspace:^"
46 },
47 "devDependencies": {
48 "@types/node": "~24.1.0",
49 "@typespec/compiler": "workspace:^",
50 "@vitest/coverage-v8": "^3.1.2",
51 "@vitest/ui": "^3.1.2",
52 "c8": "^10.1.3",
53 "rimraf": "~6.0.1",
54 "typescript": "~5.8.2",
55 "vitest": "^3.1.2"
56 }
57}
58