microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
216d28ebe4e6ae015068e1de99615f032aec7c5b

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/html-program-viewer/package.json

75lines · modecode

1{
2 "name": "@typespec/html-program-viewer",
3 "version": "0.51.0",
4 "author": "Microsoft Corporation",
5 "description": "TypeSpec library for emitting an html view of the program.",
6 "homepage": "https://microsoft.github.io/typespec",
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/src/index.js",
21 "exports": {
22 ".": {
23 "types": "./dist/src/index.d.ts",
24 "default": "./dist/src/index.js"
25 },
26 "./testing": {
27 "types": "./dist/src/testing/index.d.ts",
28 "default": "./dist/src/testing/index.js"
29 }
30 },
31 "tspMain": "dist/src/index.js",
32 "engines": {
33 "node": ">=14.0.0"
34 },
35 "scripts": {
36 "clean": "rimraf ./dist ./temp",
37 "build": "tsc -p .",
38 "watch": "tsc -p . --watch",
39 "test": "mocha",
40 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
41 "lint": "eslint . --ext .ts --max-warnings=0",
42 "lint:fix": "eslint . --fix --ext .ts"
43 },
44 "files": [
45 "lib/*.tsp",
46 "dist/**",
47 "!dist/test/**"
48 ],
49 "peerDependencies": {
50 "@typespec/compiler": "workspace:~0.51.0"
51 },
52 "dependencies": {
53 "prettier": "~3.1.1",
54 "react": "~18.2.0",
55 "react-dom": "~18.2.0",
56 "react-is": "~18.1.0",
57 "@emotion/react": "^11.11.1"
58 },
59 "devDependencies": {
60 "@types/mocha": "~10.0.6",
61 "@types/node": "~18.11.9",
62 "@types/react": "~18.2.22",
63 "@types/react-dom": "~18.2.7",
64 "@typespec/compiler": "workspace:~0.51.0",
65 "@typespec/eslint-config-typespec": "workspace:~0.51.0",
66 "@babel/core": "^7.22.20",
67 "eslint": "^8.55.0",
68 "mocha": "~10.2.0",
69 "mocha-junit-reporter": "~2.2.1",
70 "mocha-multi-reporters": "~1.5.1",
71 "c8": "~8.0.1",
72 "rimraf": "~5.0.1",
73 "typescript": "~5.3.3"
74 }
75}