microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1b74b19bc12c226dcd0f3fcd4eab6d66babbc2a8

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/bundler/package.json

62lines · modecode

1{
2 "name": "@cadl-lang/bundler",
3 "version": "0.1.0",
4 "author": "Microsoft Corporation",
5 "description": "Package to bundle a cadl library.",
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 "engines": {
23 "node": ">=16.0.0"
24 },
25 "scripts": {
26 "bundle": "node ./dist/src/cli.js",
27 "clean": "rimraf ./dist ./temp",
28 "build": "tsc -p .",
29 "watch": "tsc -p . --watch",
30 "test": "mocha",
31 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
32 "lint": "eslint . --ext .ts --max-warnings=0",
33 "lint:fix": "eslint . --fix --ext .ts"
34 },
35 "files": [
36 "lib/*.cadl",
37 "dist/**",
38 "!dist/test/**"
39 ],
40 "dependencies": {
41 "@cadl-lang/compiler": "~0.40.0",
42 "@rollup/plugin-virtual": "~3.0.1",
43 "@rollup/plugin-commonjs": "~23.0.2",
44 "@rollup/plugin-json": "~5.0.1",
45 "@rollup/plugin-node-resolve": "~15.0.1",
46 "@rollup/plugin-multi-entry": "~6.0.0",
47 "rollup": "~3.4.0"
48 },
49 "devDependencies": {
50 "@types/mocha": "~10.0.0",
51 "@types/node": "~18.11.9",
52 "@cadl-lang/eslint-config-cadl": "~0.5.0",
53 "eslint": "^8.12.0",
54 "mocha": "~10.1.0",
55 "mocha-junit-reporter": "~2.2.0",
56 "mocha-multi-reporters": "~1.5.1",
57 "c8": "~7.12.0",
58 "rimraf": "~3.0.2",
59 "typescript": "~4.9.3",
60 "vite": "^3.2.4"
61 }
62}
63