microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/deprecate-old-testing-framework

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/bundle-uploader/package.json

56lines · modecode

1{
2 "name": "@typespec/bundle-uploader",
3 "version": "0.1.0",
4 "private": true,
5 "author": "Microsoft Corporation",
6 "description": "Internal library that manage bundle uploading.",
7 "homepage": "https://typespec.io",
8 "readme": "https://github.com/microsoft/typespec/blob/main/README.md",
9 "license": "MIT",
10 "repository": {
11 "type": "git",
12 "url": "git+https://github.com/microsoft/typespec.git"
13 },
14 "bugs": {
15 "url": "https://github.com/microsoft/typespec/issues"
16 },
17 "keywords": [
18 "typespec"
19 ],
20 "type": "module",
21 "main": "dist/src/index.js",
22 "engines": {
23 "node": ">=22.0.0"
24 },
25 "scripts": {
26 "clean": "rimraf ./dist ./temp",
27 "build": "tsc -p tsconfig.build.json",
28 "watch": "tsc -p tsconfig.build.json --watch",
29 "test": "echo 'no test'",
30 "test:ci": "echo 'no test'",
31 "lint": "eslint . --max-warnings=0",
32 "lint:fix": "eslint . --fix"
33 },
34 "files": [
35 "lib/*.tsp",
36 "dist/**",
37 "!dist/test/**"
38 ],
39 "dependencies": {
40 "@azure/identity": "catalog:",
41 "@azure/storage-blob": "catalog:",
42 "@pnpm/workspace.find-packages": "catalog:",
43 "@typespec/bundler": "workspace:^",
44 "picocolors": "catalog:",
45 "semver": "catalog:"
46 },
47 "devDependencies": {
48 "@types/node": "catalog:",
49 "@types/semver": "catalog:",
50 "@vitest/coverage-v8": "catalog:",
51 "@vitest/ui": "catalog:",
52 "rimraf": "catalog:",
53 "typescript": "catalog:",
54 "vitest": "catalog:"
55 }
56}
57