microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/add-error-check-function-implementation

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/asset-emitter/package.json

56lines · modecode

1{
2 "name": "@typespec/asset-emitter",
3 "version": "0.79.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": ">=22.0.0"
27 },
28 "scripts": {
29 "clean": "rimraf ./dist ./temp",
30 "build": "tsc -p tsconfig.build.json",
31 "watch": "tsc -p tsconfig.build.json --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": "catalog:",
49 "@typespec/compiler": "workspace:^",
50 "@vitest/coverage-v8": "catalog:",
51 "@vitest/ui": "catalog:",
52 "rimraf": "catalog:",
53 "typescript": "catalog:",
54 "vitest": "catalog:"
55 }
56}
57