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/internal-build-utils/package.json

57lines · modecode

1{
2 "name": "@cadl-lang/internal-build-utils",
3 "version": "0.1.0",
4 "author": "Microsoft Corporation",
5 "description": "Internal library to Cadl providing helpers to build.",
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 "bin": {
22 "cadl-build-tool": "cmd/cli.js"
23 },
24 "engines": {
25 "node": ">=16.0.0"
26 },
27 "scripts": {
28 "clean": "rimraf ./dist ./temp",
29 "build": "tsc -p .",
30 "watch": "tsc -p . --watch",
31 "test": "mocha",
32 "test-official": "c8 mocha --forbid-only",
33 "lint": "eslint . --ext .ts --max-warnings=0",
34 "lint:fix": "eslint . --fix --ext .ts"
35 },
36 "files": [
37 "lib/*.cadl",
38 "dist/**",
39 "!dist/test/**"
40 ],
41 "dependencies": {
42 "yargs": "~17.3.1"
43 },
44 "devDependencies": {
45 "@types/mocha": "~9.1.0",
46 "@types/node": "~16.0.3",
47 "@types/watch": "~1.0.3",
48 "@types/yargs": "~17.0.2",
49 "@cadl-lang/eslint-config-cadl": "~0.3.0",
50 "eslint": "^8.12.0",
51 "mocha": "~9.2.0",
52 "c8": "~7.11.0",
53 "rimraf": "~3.0.2",
54 "typescript": "~4.6.3",
55 "watch": "~1.0.2"
56 }
57}