microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
abd213cd488a512fc2da78fc209f25cbf235ae41

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/internal-build-utils/package.json

62lines · modecode

1{
2 "name": "@typespec/internal-build-utils",
3 "version": "0.52.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/main/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": ">=18.0.0"
26 },
27 "scripts": {
28 "clean": "rimraf ./dist ./temp",
29 "build": "tsc -p .",
30 "watch": "tsc -p . --watch",
31 "test": "vitest run",
32 "test:ui": "vitest --ui",
33 "test-official": "vitest run --coverage --reporter=junit --reporter=default --no-file-parallelism",
34 "lint": "eslint . --ext .ts --max-warnings=0",
35 "lint:fix": "eslint . --fix --ext .ts"
36 },
37 "files": [
38 "lib/*.tsp",
39 "dist/**",
40 "!dist/test/**"
41 ],
42 "dependencies": {
43 "yargs": "~17.7.2",
44 "strip-json-comments": "~5.0.0",
45 "cspell": "~6.31.1",
46 "semver": "^7.5.4"
47 },
48 "devDependencies": {
49 "@types/node": "~18.11.9",
50 "@types/yargs": "~17.0.32",
51 "@typespec/eslint-config-typespec": "workspace:~0.52.0",
52 "@types/semver": "^7.5.6",
53 "eslint": "^8.55.0",
54 "vitest": "^1.2.0",
55 "@vitest/coverage-v8": "^1.1.0",
56 "@vitest/ui": "~1.1.3",
57 "c8": "~8.0.1",
58 "rimraf": "~5.0.1",
59 "typescript": "~5.3.3",
60 "chokidar": "~3.5.3"
61 }
62}