-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.76 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.76 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
107
108
109
110
111
112
{
"name": "@azure-tools/typespec-java",
"version": "0.44.2",
"description": "TypeSpec library for emitting Java client from the TypeSpec REST protocol binding",
"keywords": [
"TypeSpec"
],
"author": "Microsoft Corporation",
"homepage": "https://github.com/Azure/autorest.java",
"readme": "https://github.com/Azure/autorest.java/blob/main/typespec-extension/readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.java.git"
},
"bugs": {
"url": "https://github.com/Azure/autorest.java/issues"
},
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"test": "vitest run",
"lint": "eslint . --ext .ts --max-warnings=0",
"lint:fix": "eslint . --fix --ext .ts",
"format": "npm run -s prettier -- --write",
"check-format": "npm run prettier -- --check",
"prettier": "prettier --config ./.prettierrc.yaml **/*.ts",
"regen-docs": "npm run build && tspd doc . --enable-experimental --output-dir ./website/src/content/docs/docs/emitters/clients/typespec-java/reference --skip-js"
},
"files": [
"lib/*.tsp",
"dist/**",
"!dist/test/**",
"generator/http-client-generator/target/emitter.jar",
"generator/http-client-generator/target/classes/PerfAutomation.jfc"
],
"peerDependencies": {
"@azure-tools/openai-typespec": "^1.11.0",
"@azure-tools/typespec-autorest": ">=0.67.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.67.0 <1.0.0",
"@azure-tools/typespec-azure-resource-manager": ">=0.67.0 <1.0.0",
"@azure-tools/typespec-azure-rulesets": ">=0.67.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.67.0 <1.0.0",
"@azure-tools/typespec-liftr-base": ">=0.13.0 <1.0.0",
"@typespec/compiler": "^1.11.0",
"@typespec/http": "^1.11.0",
"@typespec/openapi": "^1.11.0",
"@typespec/openapi3": "^1.11.0",
"@typespec/rest": ">=0.81.0 <1.0.0",
"@typespec/versioning": ">=0.81.0 <1.0.0",
"@typespec/xml": ">=0.81.0 <1.0.0"
},
"dependencies": {
"@autorest/codemodel": "~4.20.1",
"js-yaml": "~4.1.1",
"lodash": "~4.18.1"
},
"devDependencies": {
"@azure-tools/openai-typespec": "1.11.0",
"@azure-tools/typespec-autorest": "0.67.0",
"@azure-tools/typespec-azure-core": "0.67.0",
"@azure-tools/typespec-azure-resource-manager": "0.67.0",
"@azure-tools/typespec-azure-rulesets": "0.67.0",
"@azure-tools/typespec-client-generator-core": "0.67.1",
"@azure-tools/typespec-liftr-base": "0.13.0",
"@microsoft/api-extractor": "^7.58.2",
"@types/js-yaml": "~4.0.9",
"@types/lodash": "~4.17.24",
"@types/node": "~25.6.0",
"@typescript-eslint/eslint-plugin": "~8.58.1",
"@typescript-eslint/parser": "~8.58.1",
"@typespec/compiler": "1.11.0",
"@typespec/events": "0.81.0",
"@typespec/http": "1.11.0",
"@typespec/openapi": "1.11.0",
"@typespec/openapi3": "1.11.0",
"@typespec/rest": "0.81.0",
"@typespec/sse": "0.81.0",
"@typespec/streams": "0.81.0",
"@typespec/tspd": "0.74.1",
"@typespec/versioning": "0.81.0",
"@typespec/xml": "0.81.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"c8": "~11.0.0",
"eslint": "~10.2.0",
"eslint-plugin-deprecation": "~3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^64.0.0",
"prettier": "~3.8.2",
"rimraf": "~6.1.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
},
"overrides": {
"eslint": "~10.2.0",
"typescript": "~6.0.2"
}
}