microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-8095

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/emitter-framework/package.json

83lines · modecode

1{
2 "name": "@typespec/emitter-framework",
3 "version": "0.9.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 "lint": "eslint . --max-warnings=0",
20 "lint:fix": "eslint . --fix"
21 },
22 "exports": {
23 ".": {
24 "import": "./dist/src/core/index.js"
25 },
26 "./csharp": {
27 "import": "./dist/src/csharp/index.js"
28 },
29 "./typescript": {
30 "import": "./dist/src/typescript/index.js"
31 },
32 "./testing": {
33 "import": "./dist/src/testing/index.js"
34 }
35 },
36 "imports": {
37 "#test/*": "./test/*",
38 "#core/*": {
39 "development": "./src/core/*",
40 "default": "./dist/src/core/*"
41 },
42 "#csharp/*": {
43 "development": "./src/csharp/*",
44 "default": "./dist/src/csharp/*"
45 },
46 "#typescript/*": {
47 "development": "./src/typescript/*",
48 "default": "./dist/src/typescript/*"
49 }
50 },
51 "keywords": [],
52 "author": "",
53 "license": "MIT",
54 "description": "",
55 "peerDependencies": {
56 "@alloy-js/core": "^0.19.0",
57 "@alloy-js/csharp": "^0.19.0",
58 "@alloy-js/typescript": "^0.19.0",
59 "@typespec/compiler": "workspace:^",
60 "@typespec/http": "workspace:^",
61 "@typespec/rest": "workspace:^"
62 },
63 "devDependencies": {
64 "@alloy-js/cli": "^0.19.0",
65 "@alloy-js/core": "^0.19.0",
66 "@alloy-js/rollup-plugin": "^0.1.0",
67 "@alloy-js/typescript": "^0.19.0",
68 "@typespec/compiler": "workspace:^",
69 "@typespec/http": "workspace:^",
70 "@typespec/rest": "workspace:^",
71 "concurrently": "^9.1.2",
72 "pathe": "^2.0.3",
73 "prettier": "~3.6.2",
74 "tree-sitter-c-sharp": "^0.23.0",
75 "tree-sitter-java": "^0.23.2",
76 "tree-sitter-javascript": "^0.23.0",
77 "tree-sitter-python": "^0.23.2",
78 "tree-sitter-typescript": "^0.23.0",
79 "typescript": "~5.8.2",
80 "vitest": "^3.1.2",
81 "web-tree-sitter": "^0.25.4"
82 }
83}
84