microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
064161d8277a88b3facccca58df87aa332bf9187

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/html-program-viewer/package.json

80lines · modecode

1{
2 "name": "@typespec/html-program-viewer",
3 "version": "0.40.0",
4 "author": "Microsoft Corporation",
5 "description": "TypeSpec library for emitting an html view of the program.",
6 "homepage": "https://github.com/Azure/typespec",
7 "readme": "https://github.com/Azure/typespec/blob/master/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/Azure/typespec.git"
12 },
13 "bugs": {
14 "url": "https://github.com/Azure/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 "typespecMain": "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": "~0.40.0"
55 },
56 "dependencies": {
57 "prettier": "~2.8.1",
58 "react": "~18.2.0",
59 "react-dom": "~18.2.0",
60 "react-is": "~18.1.0",
61 "@emotion/react": "^11.10.4"
62 },
63 "devDependencies": {
64 "@types/mocha": "~10.0.0",
65 "@types/node": "~18.11.9",
66 "@types/prettier": "2.6.0",
67 "@types/react": "~18.0.5",
68 "@types/react-dom": "~18.0.1",
69 "@typespec/compiler": "~0.40.0",
70 "@typespec/eslint-config-typespec": "~0.5.0",
71 "@babel/core": "^7.0.0",
72 "eslint": "^8.12.0",
73 "mocha": "~10.1.0",
74 "mocha-junit-reporter": "~2.2.0",
75 "mocha-multi-reporters": "~1.5.1",
76 "c8": "~7.12.0",
77 "rimraf": "~3.0.2",
78 "typescript": "~4.9.3"
79 }
80}
81