microsoft/typespec

Public

mirrored fromhttps://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
61ba17d2d29dedf4553b21a055aa6b442a304688

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/html-program-viewer/package.json

79lines · modecode

1{
2 "name": "@typespec/html-program-viewer",
3 "version": "0.48.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/master/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 ".": "./dist/src/index.js",
23 "./testing": "./dist/src/testing/index.js"
24 },
25 "typesVersions": {
26 "*": {
27 "*": [
28 "./dist/src/index.d.ts"
29 ],
30 "testing": [
31 "./dist/src/testing/index.d.ts"
32 ]
33 }
34 },
35 "tspMain": "dist/src/index.js",
36 "engines": {
37 "node": ">=14.0.0"
38 },
39 "scripts": {
40 "clean": "rimraf ./dist ./temp",
41 "build": "tsc -p .",
42 "watch": "tsc -p . --watch",
43 "test": "mocha",
44 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
45 "lint": "eslint . --ext .ts --max-warnings=0",
46 "lint:fix": "eslint . --fix --ext .ts"
47 },
48 "files": [
49 "lib/*.tsp",
50 "dist/**",
51 "!dist/test/**"
52 ],
53 "peerDependencies": {
54 "@typespec/compiler": "workspace:~0.48.1"
55 },
56 "dependencies": {
57 "prettier": "~3.0.3",
58 "react": "~18.2.0",
59 "react-dom": "~18.2.0",
60 "react-is": "~18.1.0",
61 "@emotion/react": "^11.11.1"
62 },
63 "devDependencies": {
64 "@types/mocha": "~10.0.1",
65 "@types/node": "~18.11.9",
66 "@types/react": "~18.2.22",
67 "@types/react-dom": "~18.2.7",
68 "@typespec/compiler": "workspace:~0.48.1",
69 "@typespec/eslint-config-typespec": "workspace:~0.48.0",
70 "@babel/core": "^7.22.20",
71 "eslint": "^8.49.0",
72 "mocha": "~10.2.0",
73 "mocha-junit-reporter": "~2.2.1",
74 "mocha-multi-reporters": "~1.5.1",
75 "c8": "~8.0.1",
76 "rimraf": "~5.0.1",
77 "typescript": "~5.2.2"
78 }
79}
80