microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e07d86c87a444d4145b98d85fa416eca819e251c

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/openapi/package.json

74lines · modecode

1{
2 "name": "@cadl-lang/openapi",
3 "version": "0.11.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 . && npm run lint-cadl-library",
42 "watch": "tsc -p . --watch",
43 "lint-cadl-library": "cadl compile . --warn-as-error --import @cadl-lang/library-linter --no-emit",
44 "test": "mocha",
45 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
46 "lint": "eslint . --ext .ts --max-warnings=0",
47 "lint:fix": "eslint . --fix --ext .ts"
48 },
49 "files": [
50 "lib/*.cadl",
51 "dist/**",
52 "!dist/test/**"
53 ],
54 "peerDependencies": {
55 "@cadl-lang/compiler": "~0.34.0",
56 "@cadl-lang/rest": "~0.16.0"
57 },
58 "devDependencies": {
59 "@types/mocha": "~9.1.0",
60 "@types/node": "~16.0.3",
61 "@cadl-lang/compiler": "~0.34.0",
62 "@cadl-lang/rest": "~0.16.0",
63 "@cadl-lang/eslint-config-cadl": "~0.4.0",
64 "@cadl-lang/library-linter": "~0.1.3",
65 "@cadl-lang/eslint-plugin": "~0.1.1",
66 "eslint": "^8.12.0",
67 "mocha": "~9.2.0",
68 "mocha-junit-reporter": "~2.0.2",
69 "mocha-multi-reporters": "~1.5.1",
70 "c8": "~7.11.0",
71 "rimraf": "~3.0.2",
72 "typescript": "~4.8.2"
73 }
74}
75