microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-diff-highlight-issue

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/html-program-viewer/package.json

81lines · modecode

1{
2 "name": "@typespec/html-program-viewer",
3 "version": "0.81.0",
4 "author": "Microsoft Corporation",
5 "description": "TypeSpec library for emitting an html view of the program.",
6 "homepage": "https://typespec.io",
7 "readme": "https://github.com/microsoft/typespec/blob/main/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 "main": "dist/emitter/index.js",
21 "exports": {
22 ".": {
23 "default": "./dist/emitter/index.js"
24 },
25 "./react": {
26 "types": "./dist/react/index.d.ts",
27 "default": "./dist/react/index.js"
28 },
29 "./style.css": "./dist/style.css"
30 },
31 "engines": {
32 "node": ">=22.0.0"
33 },
34 "scripts": {
35 "clean": "rimraf ./dist ./temp",
36 "build": "pnpm build:react && pnpm build:emitter",
37 "build:react": "vite build",
38 "build:emitter": "vite build --config vite.emitter.config.ts",
39 "watch": "vite build --watch",
40 "test": "vitest run",
41 "test:ui": "vitest --ui",
42 "test:ci": "vitest run --coverage --reporter=junit --reporter=default",
43 "lint": "eslint . --max-warnings=0",
44 "lint:fix": "eslint . --fix"
45 },
46 "files": [
47 "dist/**",
48 "!dist/test/**"
49 ],
50 "peerDependencies": {
51 "@typespec/compiler": "workspace:^"
52 },
53 "dependencies": {
54 "@fluentui/react-components": "catalog:",
55 "@fluentui/react-icons": "catalog:",
56 "@fluentui/react-list": "catalog:",
57 "react": "catalog:",
58 "react-dom": "catalog:",
59 "react-hotkeys-hook": "catalog:"
60 },
61 "devDependencies": {
62 "@babel/core": "catalog:",
63 "@testing-library/dom": "catalog:",
64 "@testing-library/jest-dom": "catalog:",
65 "@testing-library/react": "catalog:",
66 "@types/node": "catalog:",
67 "@types/react": "catalog:",
68 "@types/react-dom": "catalog:",
69 "@typespec/compiler": "workspace:^",
70 "@typespec/react-components": "workspace:^",
71 "@vitejs/plugin-react": "catalog:",
72 "@vitest/coverage-v8": "catalog:",
73 "@vitest/ui": "catalog:",
74 "rimraf": "catalog:",
75 "typescript": "catalog:",
76 "vite": "catalog:",
77 "vite-plugin-checker": "catalog:",
78 "vite-plugin-dts": "catalog:",
79 "vitest": "catalog:"
80 }
81}
82