-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.01 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.01 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
{
"name": "@azure-tools/js-sdk-release-tools",
"version": "2.16.4",
"description": "",
"files": [
"dist"
],
"scripts": {
"dev": "tsx watch src/changelogToolCli.ts",
"start": "node dist/changelogToolCli.js",
"debug": "node --inspect-brk dist/changelogToolCli.js",
"build": "rimraf dist && tsc -p . && npm run copy-files",
"copy-files": "copyfiles -f src/common/ciYamlTemplates/*.template.yml dist/common/ciYamlTemplates/",
"prepack": "npm run build",
"test": "vitest --run",
"test:watch": "vitest"
},
"bin": {
"changelog-tool": "./dist/changelogToolCli.js",
"hlc-code-gen": "./dist/hlcCodeGenCli.js",
"hlc-code-gen-for-pipeline": "./dist/autoGenerateInPipeline.js",
"code-gen-pipeline": "./dist/autoGenerateInPipeline.js",
"rlc-code-gen": "./dist/rlcCodegenCli.js",
"update-changelog": "./dist/generateChangelogCli.js",
"update-version": "./dist/updateBumpVersionCli.js",
"generate-ci-yaml": "./dist/generateCiYamlCli.js"
},
"author": "Microsoft Corporation",
"license": "MIT",
"type": "module",
"dependencies": {
"@azure-tools/openapi-tools-common": "^1.2.2",
"@npmcli/package-json": "^6.1.1",
"colors": "1.4.0",
"command-line-args": "^6.0.1",
"comment-json": "^4.2.5",
"copyfiles": "^2.4.1",
"fs-extra": "^11.3.0",
"glob": "11.1.0",
"js-yaml": "^4.1.0",
"minimatch": "10.2.4",
"npm-registry-fetch": "^18.0.2",
"parse-ts-to-ast": "^0.1.4",
"semver": "^7.7.1",
"shelljs": "^0.9.2",
"simple-git": "^3.5.0",
"string-template": "^1.0.0",
"ts-morph": "^26.0.0",
"tslib": "^2.8.1",
"typescript-codegen-breaking-change-detector": "0.7.10",
"unixify": "^1.0.0",
"winston": "^3.17.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.10",
"@types/npm-registry-fetch": "^8.0.7",
"@types/npmcli__package-json": "^4.0.4",
"@types/shelljs": "^0.8.15",
"@types/string-template": "^1.0.6",
"@types/unixify": "^1.0.2",
"@typespec/compiler": "^0.67.1",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "5.8.2",
"vitest": "3.2.4"
},
"optionalDependencies": {
"@rollup/rollup-android-arm-eabi": "4.20.0",
"@rollup/rollup-android-arm64": "4.20.0",
"@rollup/rollup-darwin-arm64": "4.20.0",
"@rollup/rollup-darwin-x64": "4.20.0",
"@rollup/rollup-linux-arm-gnueabihf": "4.20.0",
"@rollup/rollup-linux-arm-musleabihf": "4.20.0",
"@rollup/rollup-linux-arm64-gnu": "4.20.0",
"@rollup/rollup-linux-arm64-musl": "4.20.0",
"@rollup/rollup-linux-powerpc64le-gnu": "4.20.0",
"@rollup/rollup-linux-riscv64-gnu": "4.20.0",
"@rollup/rollup-linux-s390x-gnu": "4.20.0",
"@rollup/rollup-linux-x64-gnu": "4.20.0",
"@rollup/rollup-linux-x64-musl": "4.20.0",
"@rollup/rollup-win32-arm64-msvc": "4.20.0",
"@rollup/rollup-win32-ia32-msvc": "4.20.0",
"@rollup/rollup-win32-x64-msvc": "4.20.0"
},
"peerDependencies": {
"@typespec/compiler": ">=0.58.0 <1.0.0"
}
}