-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.93 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@azure-tools/typespec-python",
"version": "0.56.1",
"author": "Microsoft Corporation",
"description": "TypeSpec emitter for Python SDKs",
"homepage": "https://github.com/Azure/autorest.python",
"readme": "https://github.com/Azure/autorest.python/packages/typespec-python/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.python.git"
},
"bugs": {
"url": "https://github.com/microsoft/typespec/issues"
},
"keywords": [
"typespec"
],
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"tspMain": "dist/src/index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp ./venv ./node_modules",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"install": "tsx ./scripts/run-python3.ts ./scripts/install.py",
"prepare": "tsx ./scripts/run-python3.ts ./scripts/prepare.py",
"lint": "tsx ./scripts/eng/lint.ts",
"lint:fix": "eslint . --fix --ext .ts",
"format": "npx prettier **/*.ts --write && tsx ./scripts/eng/format.ts",
"regenerate": "tsx ./scripts/eng/regenerate.ts",
"test": "tsx ./scripts/eng/run-tests.ts",
"regen-docs": "npm run build && tspd doc . --enable-experimental --output-dir ./website/src/content/docs/docs/emitters/clients/typespec-python/reference --skip-js"
},
"files": [
"dist/**",
"!dist/test/**",
"scripts/**",
"generator/**"
],
"peerDependencies": {
"@typespec/compiler": "^1.7.0",
"@typespec/http": "^1.7.0",
"@typespec/rest": ">=0.77.0 <1.0.0",
"@typespec/versioning": ">=0.77.0 <1.0.0",
"@typespec/openapi": "^1.7.0",
"@typespec/events": ">=0.77.0 <1.0.0",
"@typespec/sse": ">=0.77.0 <1.0.0",
"@typespec/streams": ">=0.77.0 <1.0.0",
"@typespec/xml": ">=0.77.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.63.0 <1.0.0",
"@azure-tools/typespec-azure-resource-manager": ">=0.63.0 <1.0.0",
"@azure-tools/typespec-autorest": ">=0.63.0 <1.0.0",
"@azure-tools/typespec-azure-rulesets": ">=0.63.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.63.1 <1.0.0"
},
"dependencies": {
"js-yaml": "~4.1.0",
"semver": "~7.6.2",
"tsx": "~4.19.1",
"@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNTcwMDIzNS9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.23.1.tgz",
"fs-extra": "~11.2.0"
},
"devDependencies": {
"@typespec/compiler": "^1.7.0",
"@typespec/http": "^1.7.0",
"@typespec/rest": "~0.77.0",
"@typespec/versioning": "~0.77.0",
"@typespec/openapi": "^1.7.0",
"@typespec/events": "~0.77.0",
"@typespec/sse": "~0.77.0",
"@typespec/streams": "~0.77.0",
"@typespec/tspd": "~0.70.0",
"@typespec/xml": "~0.77.0",
"@azure-tools/typespec-azure-resource-manager": "~0.63.0",
"@azure-tools/typespec-azure-core": "~0.63.0",
"@azure-tools/typespec-azure-rulesets": "~0.63.0",
"@azure-tools/typespec-autorest": "~0.63.0",
"@azure-tools/typespec-client-generator-core": "~0.63.1",
"@azure-tools/azure-http-specs": "0.1.0-alpha.35-dev.8",
"@typespec/http-specs": "0.1.0-alpha.30-dev.1",
"@typespec/spector": "0.1.0-alpha.21",
"@typespec/spec-api": "0.1.0-alpha.11",
"@types/js-yaml": "~4.0.5",
"@types/node": "~24.1.0",
"@types/yargs": "~17.0.33",
"@types/semver": "7.5.8",
"c8": "^10.1.3",
"vitest": "^3.1.2",
"rimraf": "~6.0.1",
"typescript": "~5.8.2",
"typescript-eslint": "^8.21.0",
"yargs": "~17.7.2",
"chalk": "5.3.0",
"@types/fs-extra": "11.0.4"
}
}