@forge/notification 0.0.1-experimental-ec29181
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 +7 -0
- package/LICENSE.txt +7 -0
- package/README.md +3 -0
- package/package.json +16 -0
package/CHANGELOG.md
ADDED
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2025 Atlassian
|
|
2
|
+
Permission is hereby granted to use this software in accordance with the terms
|
|
3
|
+
and conditions outlined in the Atlassian Developer Terms, which can be found
|
|
4
|
+
at the following URL:
|
|
5
|
+
https://developer.atlassian.com/platform/marketplace/atlassian-developer-terms/
|
|
6
|
+
By using this software, you agree to comply with these terms and conditions.
|
|
7
|
+
If you do not agree with these terms, you are not permitted to use this software.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@forge/notification",
|
|
3
|
+
"version": "0.0.1-experimental-ec29181",
|
|
4
|
+
"description": "Forge Notification SDK",
|
|
5
|
+
"main": "out/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "yarn run clean && yarn run compile",
|
|
8
|
+
"clean": "rm -rf ./out && rm -f tsconfig.tsbuildinfo",
|
|
9
|
+
"compile": "tsc -b -v"
|
|
10
|
+
},
|
|
11
|
+
"author": "Atlassian",
|
|
12
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|
|
15
|
+
}
|
|
16
|
+
}
|