microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4199f83575db84feb69e28f57d78c400aec1eab4

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/internal-build-utils/package.json

63lines · modecode

1{
2 "name": "@typespec/internal-build-utils",
3 "version": "0.54.0",
4 "author": "Microsoft Corporation",
5 "description": "Internal library to TypeSpec providing helpers to build.",
6 "homepage": "https://typespec.io",
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 "@pnpm/find-workspace-packages": "^6.0.9",
44 "cspell": "^8.6.0",
45 "semver": "^7.6.0",
46 "strip-json-comments": "~5.0.1",
47 "yargs": "~17.7.2"
48 },
49 "devDependencies": {
50 "@types/node": "~18.11.19",
51 "@types/semver": "^7.5.8",
52 "@types/yargs": "~17.0.32",
53 "@typespec/eslint-config-typespec": "workspace:~",
54 "@vitest/coverage-v8": "^1.4.0",
55 "@vitest/ui": "^1.4.0",
56 "c8": "^9.1.0",
57 "chokidar": "~3.6.0",
58 "eslint": "^8.57.0",
59 "rimraf": "~5.0.5",
60 "typescript": "~5.4.2",
61 "vitest": "^1.4.0"
62 }
63}
64