-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@azure-tools/typespec-client-generator-cli",
"version": "0.10.0",
"description": "A tool to generate Azure SDKs from TypeSpec",
"main": "dist/index.js",
"homepage": "https://github.com/Azure/azure-sdk-tools/tree/main/tools/tsp-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/azure-sdk-tools.git"
},
"bugs": {
"url": "https://github.com/Azure/azure-sdk-tools/issues"
},
"scripts": {
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc",
"clean": "rimraf ./dist ./types",
"purge": "rimraf ./node_modules package-lock.json",
"example": "npx tsx src/index.ts update -o ./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest/",
"prepack": "npm run build",
"test": "mocha",
"test:commands": "npx tsx ./test/run_commands.ts",
"tsp-client": "node cmd/tsp-client.js",
"watch": "tsc -p . --watch"
},
"author": "Microsoft Corporation",
"license": "MIT",
"type": "module",
"engines": {
"node": "^18.19.0 || >=20.6.0"
},
"bin": {
"tsp-client": "cmd/tsp-client.js"
},
"files": [
"dist",
"cmd/tsp-client.js"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.8",
"@types/prompt-sync": "^4.2.1",
"@typespec/compiler": "^0.58.0",
"chai": "^4.3.7",
"mocha": "^10.5.2",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsx": "^4.16.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@autorest/openapi-to-typespec": "0.8.2",
"@autorest/csharp": "https://aka.ms/azsdk/openapi-to-typespec-csharp",
"@azure-tools/typespec-autorest": "^0.44.0",
"@azure/core-rest-pipeline": "^1.12.0",
"@types/yargs": "^17.0.32",
"autorest": "^3.7.1",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"prompt-sync": "^4.2.0",
"simple-git": "^3.20.0",
"yaml": "^2.3.1",
"yargs": "^17.2.1"
},
"peerDependencies": {
"@typespec/compiler": ">=0.58.0 <1.0.0"
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/*.spec.ts",
"loader": "ts-node/esm"
}
}