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/bundler/package.json

63lines · modecode

1{
2 "name": "@typespec/bundler",
3 "version": "0.1.0",
4 "author": "Microsoft Corporation",
5 "description": "Package to bundle a typespec library.",
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 "tspMain": "dist/src/index.js",
22 "engines": {
23 "node": ">=16.0.0"
24 },
25 "scripts": {
26 "bundle": "node ./dist/src/cli.js",
27 "clean": "rimraf ./dist ./temp",
28 "build": "tsc -p .",
29 "watch": "tsc -p . --watch",
30 "test": "mocha",
31 "test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
32 "lint": "eslint . --ext .ts --max-warnings=0",
33 "lint:fix": "eslint . --fix --ext .ts"
34 },
35 "files": [
36 "lib/*.tsp",
37 "dist/**",
38 "!dist/test/**"
39 ],
40 "dependencies": {
41 "@typespec/compiler": "workspace:~0.48.0",
42 "@rollup/plugin-virtual": "~3.0.1",
43 "@rollup/plugin-commonjs": "~25.0.0",
44 "@rollup/plugin-json": "~6.0.0",
45 "@rollup/plugin-node-resolve": "~15.1.0",
46 "@rollup/plugin-multi-entry": "~6.0.0",
47 "rollup": "~3.24.0",
48 "@rollup/plugin-alias": "~5.0.0"
49 },
50 "devDependencies": {
51 "@types/mocha": "~10.0.1",
52 "@types/node": "~18.11.9",
53 "@typespec/eslint-config-typespec": "workspace:~0.48.0",
54 "eslint": "^8.42.0",
55 "mocha": "~10.2.0",
56 "mocha-junit-reporter": "~2.2.0",
57 "mocha-multi-reporters": "~1.5.1",
58 "c8": "~8.0.0",
59 "rimraf": "~5.0.1",
60 "typescript": "~5.1.3",
61 "vite": "^4.2.1"
62 }
63}
64