@atlaskit/embedded-confluence 1.0.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.
@@ -0,0 +1,2 @@
1
+ import { EditPage as EditPageCommon } from '@atlassian/embedded-confluence-common';
2
+ export default EditPageCommon;
@@ -0,0 +1,3 @@
1
+ export { default as ViewPage } from './view-page/ViewPage';
2
+ export { default as EditPage } from './edit-page/EditPage';
3
+ export { ExperienceTrackerContext, ExperienceTracker, } from '@atlassian/experience-tracker';
@@ -0,0 +1,2 @@
1
+ import { ViewPage as ViewPageCommon } from '@atlassian/embedded-confluence-common';
2
+ export default ViewPageCommon;
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@atlaskit/embedded-confluence",
3
+ "version": "1.0.0",
4
+ "description": "Public release version of Embeddedable Pages for Confluence",
5
+ "author": "Atlassian Pty Ltd",
6
+ "license": "Apache-2.0",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "atlassian": {
11
+ "team": "Confluence Better Together",
12
+ "inPublicMirror": true,
13
+ "releaseModel": "continuous",
14
+ "website": {
15
+ "name": "Embedded Confluence"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "prepack": "node ./scripts/devCleanup.js",
20
+ "postpublish": "node ./scripts/devRestore.js",
21
+ "webpack-build": "NODE_OPTIONS=--max-old-space-size=4096 webpack --env NODE_ENV=production --env prod --progress --config config/webpack.prod.js",
22
+ "ak-postbuild": "yarn webpack-build"
23
+ },
24
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
25
+ "main": "dist/embedded-confluence-bundle.js",
26
+ "browser": "dist/embedded-confluence-bundle.js",
27
+ "types": "dist/types/index.d.ts",
28
+ "sideEffects": false,
29
+ "atlaskit:src": "src/index.ts",
30
+ "af:exports": {
31
+ ".": "./src/index.ts"
32
+ },
33
+ "dependencies": {
34
+ "@babel/runtime": "^7.0.0"
35
+ },
36
+ "peerDependencies": {
37
+ "react": "^16.8.0",
38
+ "react-dom": "^16.8.0"
39
+ },
40
+ "devDependencies": {
41
+ "@atlaskit/analytics-next": "^8.3.0",
42
+ "@atlaskit/docs": "*",
43
+ "@testing-library/react": "^8.0.1",
44
+ "typescript": "4.2.4",
45
+ "wait-for-expect": "^1.2.0"
46
+ },
47
+ "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.0"
48
+ }