microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-html-program-viewer-crash

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/emitter-framework/package.json

95lines · modecode

1{
2 "name": "@typespec/emitter-framework",
3 "version": "0.17.0",
4 "type": "module",
5 "main": "dist/index.js",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/microsoft/typespec.git"
9 },
10 "scripts": {
11 "build": "alloy build",
12 "clean": "rimraf ./dist",
13 "format": "prettier . --write",
14 "watch": "alloy build --watch",
15 "test": "vitest run",
16 "test:ui": "vitest --ui",
17 "test:watch": "vitest -w",
18 "test:ci": "vitest run --coverage --reporter=junit --reporter=default",
19 "prepack": "tsx ../../eng/tsp-core/scripts/strip-dev-import-exports.ts",
20 "postpack": "tsx ../../eng/tsp-core/scripts/strip-dev-import-exports.ts --restore",
21 "lint": "eslint . --max-warnings=0",
22 "lint:fix": "eslint . --fix"
23 },
24 "exports": {
25 ".": {
26 "development": "./src/core/index.ts",
27 "import": "./dist/src/core/index.js"
28 },
29 "./csharp": {
30 "development": "./src/csharp/index.ts",
31 "import": "./dist/src/csharp/index.js"
32 },
33 "./typescript": {
34 "development": "./src/typescript/index.ts",
35 "import": "./dist/src/typescript/index.js"
36 },
37 "./python": {
38 "development": "./src/python/index.ts",
39 "import": "./dist/src/python/index.js"
40 },
41 "./testing": {
42 "development": "./src/testing/index.ts",
43 "import": "./dist/src/testing/index.js"
44 }
45 },
46 "imports": {
47 "#test/*": "./test/*",
48 "#core/*": {
49 "development": "./src/core/*",
50 "default": "./dist/src/core/*"
51 },
52 "#csharp/*": {
53 "development": "./src/csharp/*",
54 "default": "./dist/src/csharp/*"
55 },
56 "#typescript/*": {
57 "development": "./src/typescript/*",
58 "default": "./dist/src/typescript/*"
59 },
60 "#python/*": {
61 "development": "./src/python/*",
62 "default": "./dist/src/python/*"
63 }
64 },
65 "keywords": [],
66 "author": "",
67 "license": "MIT",
68 "description": "",
69 "peerDependencies": {
70 "@alloy-js/core": "catalog:",
71 "@alloy-js/csharp": "catalog:",
72 "@alloy-js/python": "catalog:",
73 "@alloy-js/typescript": "catalog:",
74 "@typespec/compiler": "workspace:^"
75 },
76 "devDependencies": {
77 "@alloy-js/cli": "catalog:",
78 "@alloy-js/core": "catalog:",
79 "@alloy-js/python": "catalog:",
80 "@alloy-js/rollup-plugin": "catalog:",
81 "@alloy-js/typescript": "catalog:",
82 "@typespec/compiler": "workspace:^",
83 "concurrently": "catalog:",
84 "pathe": "catalog:",
85 "prettier": "catalog:",
86 "tree-sitter-c-sharp": "catalog:",
87 "tree-sitter-java": "catalog:",
88 "tree-sitter-javascript": "catalog:",
89 "tree-sitter-python": "catalog:",
90 "tree-sitter-typescript": "catalog:",
91 "typescript": "catalog:",
92 "vitest": "catalog:",
93 "web-tree-sitter": "catalog:"
94 }
95}
96