@azure/api-management-custom-widgets-scaffolder 1.0.0-alpha.20250807.2 → 1.0.0-alpha.20250825.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.10"
8
+ "packageVersion": "7.52.11"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/api-management-custom-widgets-scaffolder",
3
- "version": "1.0.0-alpha.20250807.2",
3
+ "version": "1.0.0-alpha.20250825.1",
4
4
  "author": "Microsoft Corporation",
5
5
  "license": "MIT",
6
6
  "sdk-type": "client",
@@ -29,39 +29,22 @@
29
29
  "LICENSE"
30
30
  ],
31
31
  "type": "module",
32
- "scripts": {
33
- "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api",
34
- "build:samples": "echo skipped",
35
- "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1",
36
- "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
37
- "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
38
- "extract-api": "tsc -p . && dev-tool run extract-api",
39
- "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
40
- "lint": "eslint package.json src test --ignore-pattern templates",
41
- "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern templates",
42
- "pack": "npm pack 2>&1",
43
- "test": "npm run test:node && npm run test:browser",
44
- "test:browser": "echo skipped",
45
- "test:node": "dev-tool run test:vitest --no-test-proxy",
46
- "test:node:esm": "dev-tool run test:vitest --esm --no-test-proxy",
47
- "update-snippets": "dev-tool run update-snippets"
48
- },
49
32
  "devDependencies": {
50
- "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
51
- "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
52
33
  "@rollup/plugin-node-resolve": "^15.2.3",
53
34
  "@types/inquirer": "^9.0.7",
54
35
  "@types/mustache": "^4.2.1",
55
- "@types/node": "^20.0.0",
36
+ "@types/node": "^20.19.0",
56
37
  "@types/yargs": "^17.0.32",
57
38
  "@types/yargs-parser": "^21.0.3",
58
- "@vitest/coverage-istanbul": "^3.0.9",
59
- "eslint": "^9.9.0",
39
+ "@vitest/coverage-istanbul": "^3.2.3",
40
+ "eslint": "^9.33.0",
60
41
  "magic-string": "^0.30.8",
61
42
  "prettier": "^3.3.3",
62
43
  "rollup": "^4.14.0",
63
- "typescript": "~5.8.2",
64
- "vitest": "^3.0.9"
44
+ "typescript": "~5.8.3",
45
+ "vitest": "^3.2.3",
46
+ "@azure/dev-tool": "^1.0.0",
47
+ "@azure/eslint-plugin-azure-sdk": "^3.0.0"
65
48
  },
66
49
  "dependencies": {
67
50
  "chalk": "^4.1.2",
@@ -99,5 +82,21 @@
99
82
  },
100
83
  "main": "./dist/commonjs/index.js",
101
84
  "types": "./dist/commonjs/index.d.ts",
102
- "module": "./dist/esm/index.js"
103
- }
85
+ "module": "./dist/esm/index.js",
86
+ "scripts": {
87
+ "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api",
88
+ "build:samples": "echo Skipped.",
89
+ "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1",
90
+ "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
91
+ "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",
92
+ "extract-api": "tsc -p . && dev-tool run extract-api",
93
+ "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
94
+ "lint": "eslint package.json src test --ignore-pattern templates",
95
+ "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern templates",
96
+ "pack": "pnpm pack 2>&1",
97
+ "test": "npm run test:node && npm run test:browser",
98
+ "test:browser": "echo skipped",
99
+ "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest --no-test-proxy",
100
+ "update-snippets": "dev-tool run update-snippets"
101
+ }
102
+ }