microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-8243

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/emitter-framework/package.json

79lines · modecode

1{
2 "name": "@typespec/emitter-framework",
3 "version": "0.10.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 },
61 "devDependencies": {
62 "@alloy-js/cli": "^0.19.0",
63 "@alloy-js/core": "^0.19.0",
64 "@alloy-js/rollup-plugin": "^0.1.0",
65 "@alloy-js/typescript": "^0.19.0",
66 "@typespec/compiler": "workspace:^",
67 "concurrently": "^9.1.2",
68 "pathe": "^2.0.3",
69 "prettier": "~3.6.2",
70 "tree-sitter-c-sharp": "^0.23.0",
71 "tree-sitter-java": "^0.23.2",
72 "tree-sitter-javascript": "^0.23.0",
73 "tree-sitter-python": "^0.23.2",
74 "tree-sitter-typescript": "^0.23.0",
75 "typescript": "~5.8.2",
76 "vitest": "^3.1.2",
77 "web-tree-sitter": "^0.25.4"
78 }
79}