microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-enum-type-collapsing-issue

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/bundler/package.json

61lines · modecode

1{
2 "name": "@typespec/bundler",
3 "version": "0.5.2",
4 "author": "Microsoft Corporation",
5 "description": "Package to bundle a TypeSpec library.",
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 "exports": {
22 ".": "./dist/src/index.js",
23 "./vite": "./dist/src/vite/index.js"
24 },
25 "engines": {
26 "node": ">=22.0.0"
27 },
28 "scripts": {
29 "bundle": "node ./dist/src/cli.js",
30 "clean": "rimraf ./dist ./temp",
31 "build": "tsc -p tsconfig.build.json",
32 "watch": "tsc -p tsconfig.build.json --watch",
33 "test": "vitest run",
34 "test:ui": "vitest --ui",
35 "test:ci": "vitest run --coverage --reporter=junit --reporter=default",
36 "lint": "eslint . --max-warnings=0",
37 "lint:fix": "eslint . --fix"
38 },
39 "files": [
40 "lib/*.tsp",
41 "dist/**",
42 "!dist/test/**"
43 ],
44 "dependencies": {
45 "@typespec/compiler": "workspace:^",
46 "esbuild": "catalog:",
47 "esbuild-plugins-node-modules-polyfill": "catalog:",
48 "picocolors": "catalog:",
49 "yargs": "catalog:"
50 },
51 "devDependencies": {
52 "@types/node": "catalog:",
53 "@types/yargs": "catalog:",
54 "@vitest/coverage-v8": "catalog:",
55 "@vitest/ui": "catalog:",
56 "rimraf": "catalog:",
57 "typescript": "catalog:",
58 "vite": "catalog:",
59 "vitest": "catalog:"
60 }
61}