@forge/manifest 12.10.0-next.1-experimental-44b7a12 → 13.0.0-next.2
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.
- package/CHANGELOG.md +5 -7
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 13.0.0-next.2
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Major Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 78fcb7f: Adds support for TypeScript 5
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
NodeJS requirement bumped from 20.0.0 to >=20.18.1
|
|
14
|
-
- 1a461c3: Update manifest definitions
|
|
11
|
+
- Updated dependencies [78fcb7f]
|
|
12
|
+
- @forge/i18n@1.0.0-next.0
|
|
15
13
|
|
|
16
14
|
## 12.10.0-next.1
|
|
17
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0-next.2",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"@types/jest": "^29.5.14",
|
|
19
19
|
"@types/node": "20.19.1",
|
|
20
20
|
"json-schema-to-typescript": "^10.1.5",
|
|
21
|
-
"typescript": "
|
|
21
|
+
"typescript": "5.9.2",
|
|
22
22
|
"typescript-json-schema": "^0.62.0"
|
|
23
23
|
},
|
|
24
24
|
"author": "Atlassian",
|
|
25
25
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@forge/i18n": "0.0.
|
|
27
|
+
"@forge/i18n": "1.0.0-next.0",
|
|
28
28
|
"@sentry/node": "7.106.0",
|
|
29
29
|
"ajv": "^8.18.0",
|
|
30
30
|
"ajv-formats": "2.1.1",
|
|
@@ -36,5 +36,13 @@
|
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"typescript": ">=5.0.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependenciesMeta": {
|
|
44
|
+
"typescript": {
|
|
45
|
+
"optional": true
|
|
46
|
+
}
|
|
39
47
|
}
|
|
40
48
|
}
|