microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a6b7827fcd2db3bf604d42e235216c8d5b244f13

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/internal-build-utils/package.json

60lines · modecode

1{
2 "name": "@typespec/internal-build-utils",
3 "version": "0.48.0",
4 "author": "Microsoft Corporation",
5 "description": "Internal library to TypeSpec providing helpers to build.",
6 "homepage": "https://microsoft.github.io/typespec",
7 "readme": "https://github.com/microsoft/typespec/blob/master/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/microsoft/typespec.git"
12 },
13 "bugs": {
14 "url": "https://github.com/microsoft/typespec/issues"
15 },
16 "keywords": [
17 "typespec"
18 ],
19 "type": "module",
20 "main": "dist/src/index.js",
21 "bin": {
22 "typespec-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 --reporter mocha-multi-reporters",
33 "lint": "eslint . --ext .ts --max-warnings=0",
34 "lint:fix": "eslint . --fix --ext .ts"
35 },
36 "files": [
37 "lib/*.tsp",
38 "dist/**",
39 "!dist/test/**"
40 ],
41 "dependencies": {
42 "yargs": "~17.7.1",
43 "strip-json-comments": "~5.0.0",
44 "cspell": "~6.31.1"
45 },
46 "devDependencies": {
47 "@types/mocha": "~10.0.1",
48 "@types/node": "~18.11.9",
49 "@types/yargs": "~17.0.24",
50 "@typespec/eslint-config-typespec": "workspace:~0.48.0",
51 "eslint": "^8.42.0",
52 "mocha": "~10.2.0",
53 "mocha-junit-reporter": "~2.2.0",
54 "mocha-multi-reporters": "~1.5.1",
55 "c8": "~8.0.0",
56 "rimraf": "~5.0.1",
57 "typescript": "~5.1.3",
58 "chokidar": "~3.5.3"
59 }
60}
61