microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e966efd30e552f4e84d5ae7224515199738ddd8e

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/openapi/package.json

69lines · modecode

1{
2 "name": "@cadl-lang/openapi",
3 "version": "0.8.0",
4 "author": "Microsoft Corporation",
5 "description": "Cadl library providing OpenAPI concepts",
6 "homepage": "https://github.com/Azure/cadl",
7 "readme": "https://github.com/Azure/cadl/blob/master/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/Azure/cadl.git"
12 },
13 "bugs": {
14 "url": "https://github.com/Azure/cadl/issues"
15 },
16 "keywords": [
17 "cadl"
18 ],
19 "type": "module",
20 "main": "dist/src/index.js",
21 "cadlMain": "dist/src/index.js",
22 "exports": {
23 ".": "./dist/src/index.js",
24 "./testing": "./dist/src/testing/index.js"
25 },
26 "typesVersions": {
27 "*": {
28 "*": [
29 "./dist/src/index.d.ts"
30 ],
31 "testing": [
32 "./dist/src/testing/index.d.ts"
33 ]
34 }
35 },
36 "engines": {
37 "node": ">=16.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",
45 "lint": "eslint . --ext .ts --max-warnings=0",
46 "lint:fix": "eslint . --fix --ext .ts"
47 },
48 "files": [
49 "lib/*.cadl",
50 "dist/**",
51 "!dist/test/**"
52 ],
53 "peerDependencies": {
54 "@cadl-lang/compiler": "~0.30.0",
55 "@cadl-lang/rest": "~0.13.0"
56 },
57 "devDependencies": {
58 "@types/mocha": "~9.1.0",
59 "@types/node": "~16.0.3",
60 "@cadl-lang/compiler": "~0.30.0",
61 "@cadl-lang/rest": "~0.13.0",
62 "@cadl-lang/eslint-config-cadl": "~0.3.0",
63 "eslint": "^8.12.0",
64 "mocha": "~9.2.0",
65 "c8": "~7.11.0",
66 "rimraf": "~3.0.2",
67 "typescript": "~4.6.3"
68 }
69}
70