@microsoft/teamsfx-api 0.24.3-alpha.db74a278f9.0 → 0.24.3-beta.2026090710.0

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.
Files changed (1) hide show
  1. package/package.json +17 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/teamsfx-api",
3
- "version": "0.24.3-alpha.db74a278f9.0",
3
+ "version": "0.24.3-beta.2026090710.0",
4
4
  "description": "teamsfx framework api",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -16,18 +16,6 @@
16
16
  "files": [
17
17
  "build/**/*"
18
18
  ],
19
- "scripts": {
20
- "lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
21
- "prebuild": "npx json2ts --input src/schemas/envConfig.json --output src/schemas/envConfig.ts",
22
- "build": "tsc -p ./ --incremental",
23
- "build:api-markdown": "npm run build && rimraf ../../docs/api && npx api-documenter markdown -i temp -o ../../docs/api",
24
- "postbuild": "npx copyfiles src/schemas/*.json build/schemas/",
25
- "lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
26
- "doc": "typedoc",
27
- "test:unit": "nyc --no-clean mocha --no-timeouts --require ts-node/register \"tests/**/*.ts\" ",
28
- "prepublishOnly": "npm run test:unit && npm run build",
29
- "precommit": "lint-staged"
30
- },
31
19
  "devDependencies": {
32
20
  "@istanbuljs/nyc-config-typescript": "^1.0.1",
33
21
  "@microsoft/api-documenter": "^7.15.3",
@@ -65,20 +53,32 @@
65
53
  },
66
54
  "dependencies": {
67
55
  "@azure/core-auth": "^1.4.0",
68
- "@microsoft/app-manifest": "1.1.3-alpha.db74a278f9.0",
69
56
  "chai": "^4.3.4",
70
57
  "jsonschema": "^1.4.0",
71
58
  "neverthrow": "^3.2.0",
72
- "tslib": "^2.3.1"
59
+ "tslib": "^2.3.1",
60
+ "@microsoft/app-manifest": "1.1.3-beta.2026090710.0"
73
61
  },
74
62
  "gitHead": "7d60c0765c0ea8c023a26c10d1c93001c597afbb",
75
63
  "publishConfig": {
76
- "access": "public"
64
+ "access": "public",
65
+ "tag": "beta"
77
66
  },
78
67
  "lint-staged": {
79
68
  "*.{js,jsx,css,ts,tsx}": [
80
69
  "eslint --cache --fix --quiet",
81
70
  "prettier --cache --write --ignore-unknown"
82
71
  ]
72
+ },
73
+ "scripts": {
74
+ "lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
75
+ "prebuild": "npx json2ts --input src/schemas/envConfig.json --output src/schemas/envConfig.ts",
76
+ "build": "tsc -p ./ --incremental",
77
+ "build:api-markdown": "npm run build && rimraf ../../docs/api && npx api-documenter markdown -i temp -o ../../docs/api",
78
+ "postbuild": "npx copyfiles src/schemas/*.json build/schemas/",
79
+ "lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
80
+ "doc": "typedoc",
81
+ "test:unit": "nyc --no-clean mocha --no-timeouts --require ts-node/register \"tests/**/*.ts\" ",
82
+ "precommit": "lint-staged"
83
83
  }
84
- }
84
+ }