-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
83 lines (83 loc) · 2.54 KB
/
package.json
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
{
"name": "@azure-tools/typespec-go",
"version": "0.3.2",
"description": "TypeSpec emitter for Go SDKs",
"type": "module",
"main": "dist/typespec-go/src/index.js",
"exports": {
".": "./dist/typespec-go/src/index.js"
},
"tspMain": "dist/typespec-go/src/index.js",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"eslint-fix": "eslint . --fix --ext .ts",
"eslint": "eslint . --ext .ts",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"test": "jest --ci --passWithNoTests",
"clean": "ver > nul 2>&1 nul && npm run --silent clean-cmd || npm run --silent clean-bash",
"clean-cmd": "if exist dist rmdir /s /q dist && exit 0 || exit 0 ",
"clean-bash": "rm nul && rm -rf dist && exit 0 || exit 0"
},
"files": [
"dist/**",
"!dist/test/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.go.git"
},
"keywords": [
"cadl",
"go",
"golang",
"typespec"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest.go/issues"
},
"homepage": "https://github.com/Azure/autorest.go#readme",
"readme": "https://github.com/Azure/autorest.go/blob/main/readme.md",
"devDependencies": {
"@azure-tools/cadl-ranch": "~0.16.1",
"@azure-tools/cadl-ranch-expect": "~0.15.6",
"@azure-tools/cadl-ranch-specs": "0.39.1",
"@azure-tools/typespec-autorest": ">=0.48.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.48.0 <1.0.0",
"@azure-tools/typespec-azure-resource-manager": ">=0.48.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.48.0 <1.0.0",
"@types/js-yaml": "~4.0.6",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "~4.1.1",
"@typescript-eslint/parser": "~4.1.1",
"@typespec/compiler": ">=0.62.0 <1.0.0",
"@typespec/http": ">=0.62.0 <1.0.0",
"@typespec/openapi": ">=0.62.0 <1.0.0",
"@typespec/rest": ">=0.62.0 <1.0.0",
"@typespec/versioning": ">=0.62.0 <1.0.0",
"@typespec/xml": ">=0.62.0 <1.0.0",
"@types/jest": "~26.0.24",
"eslint": "~6.6.0",
"jest": "~27.0.6",
"ts-jest": "~27.0.4",
"typescript": "~5.1.3"
},
"peerDependencies": {
"@azure-tools/typespec-client-generator-core": ">=0.48.0 <1.0.0",
"@typespec/compiler": ">=0.62.0 <1.0.0",
"@typespec/http": ">=0.62.0 <1.0.0"
},
"dependencies": {
"@azure-tools/codegen": "~2.9.2",
"@azure-tools/linq": "~3.1.0",
"js-yaml": "~4.1.0",
"source-map-support": "0.5.21"
}
}