@atlaskit/editor-plugin-find-replace 1.2.9 → 1.3.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.
package/package.json CHANGED
@@ -1,115 +1,84 @@
1
1
  {
2
- "name": "@atlaskit/editor-plugin-find-replace",
3
- "version": "1.2.9",
4
- "description": "find replace plugin for @atlaskit/editor-core",
5
- "author": "Atlassian Pty Ltd",
6
- "license": "Apache-2.0",
7
- "publishConfig": {
8
- "registry": "https://registry.npmjs.org/"
9
- },
10
- "atlassian": {
11
- "team": "Editor: Lego",
12
- "inPublicMirror": false,
13
- "releaseModel": "continuous"
14
- },
15
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
16
- "main": "dist/cjs/index.js",
17
- "module": "dist/esm/index.js",
18
- "module:es2019": "dist/es2019/index.js",
19
- "types": "dist/types/index.d.ts",
20
- "typesVersions": {
21
- ">=4.5 <4.9": {
22
- "*": [
23
- "dist/types-ts4.5/*",
24
- "dist/types-ts4.5/index.d.ts"
25
- ]
26
- }
27
- },
28
- "sideEffects": [
29
- "*.compiled.css"
30
- ],
31
- "atlaskit:src": "src/index.ts",
32
- "af:exports": {
33
- ".": "./src/index.ts",
34
- "./styles": "./src/styles.ts"
35
- },
36
- "dependencies": {
37
- "@atlaskit/button": "^17.17.0",
38
- "@atlaskit/editor-common": "^82.0.0",
39
- "@atlaskit/editor-plugin-analytics": "^1.2.0",
40
- "@atlaskit/editor-prosemirror": "4.0.1",
41
- "@atlaskit/editor-shared-styles": "^2.12.0",
42
- "@atlaskit/form": "^10.3.0",
43
- "@atlaskit/icon": "^22.3.0",
44
- "@atlaskit/platform-feature-flags": "^0.2.0",
45
- "@atlaskit/primitives": "^6.5.0",
46
- "@atlaskit/textfield": "^6.3.0",
47
- "@atlaskit/theme": "^12.8.0",
48
- "@atlaskit/tokens": "^1.49.0",
49
- "@atlaskit/tooltip": "^18.4.0",
50
- "@babel/runtime": "^7.0.0",
51
- "@emotion/react": "^11.7.1",
52
- "lodash": "^4.17.21",
53
- "raf-schd": "^4.0.3"
54
- },
55
- "devDependencies": {
56
- "@af/visual-regression": "*",
57
- "@atlaskit/editor-plugin-block-type": "^3.5.0",
58
- "@atlaskit/editor-plugin-text-formatting": "^1.7.0",
59
- "@atlassian/feature-flags-test-utils": "^0.2.0",
60
- "@testing-library/react": "^12.1.5",
61
- "@testing-library/user-event": "^14.4.3",
62
- "mockdate": "^3.0.5",
63
- "raf-stub": "^2.0.1",
64
- "react-dom": "^16.8.0"
65
- },
66
- "peerDependencies": {
67
- "react": "^16.8.0",
68
- "react-intl-next": "npm:react-intl@^5.18.1"
69
- },
70
- "techstack": {
71
- "@atlassian/frontend": {
72
- "import-structure": [
73
- "atlassian-conventions"
74
- ],
75
- "circular-dependencies": [
76
- "file-and-folder-level"
77
- ]
78
- },
79
- "@repo/internal": {
80
- "dom-events": "use-bind-event-listener",
81
- "analytics": [
82
- "analytics-next"
83
- ],
84
- "design-tokens": [
85
- "color"
86
- ],
87
- "theming": [
88
- "react-context"
89
- ],
90
- "ui-components": [
91
- "lite-mode"
92
- ],
93
- "deprecation": "no-deprecated-imports",
94
- "styling": [
95
- "emotion",
96
- "emotion"
97
- ],
98
- "imports": [
99
- "import-no-extraneous-disable-for-examples-and-docs"
100
- ]
101
- }
102
- },
103
- "platform-feature-flags": {
104
- "platform.editor.a11y-find-replace": {
105
- "type": "boolean"
106
- }
107
- },
108
- "stricter": {
109
- "no-unused-dependencies": {
110
- "exclude": [
111
- "@atlaskit/editor-plugin-analytics"
112
- ]
113
- }
114
- }
115
- }
2
+ "name": "@atlaskit/editor-plugin-find-replace",
3
+ "version": "1.3.0",
4
+ "description": "find replace plugin for @atlaskit/editor-core",
5
+ "author": "Atlassian Pty Ltd",
6
+ "license": "Apache-2.0",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "atlassian": {
11
+ "team": "Editor: Lego",
12
+ "inPublicMirror": false,
13
+ "releaseModel": "continuous"
14
+ },
15
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
16
+ "main": "dist/cjs/index.js",
17
+ "module": "dist/esm/index.js",
18
+ "module:es2019": "dist/es2019/index.js",
19
+ "types": "dist/types/index.d.ts",
20
+ "typesVersions": {
21
+ ">=4.5 <4.9": {
22
+ "*": ["dist/types-ts4.5/*", "dist/types-ts4.5/index.d.ts"]
23
+ }
24
+ },
25
+ "sideEffects": ["*.compiled.css"],
26
+ "atlaskit:src": "src/index.ts",
27
+ "af:exports": {
28
+ ".": "./src/index.ts",
29
+ "./styles": "./src/styles.ts"
30
+ },
31
+ "dependencies": {
32
+ "@atlaskit/button": "^17.17.0",
33
+ "@atlaskit/editor-common": "^82.6.0",
34
+ "@atlaskit/editor-plugin-analytics": "^1.2.0",
35
+ "@atlaskit/editor-prosemirror": "4.0.1",
36
+ "@atlaskit/editor-shared-styles": "^2.12.0",
37
+ "@atlaskit/form": "^10.3.0",
38
+ "@atlaskit/icon": "^22.3.0",
39
+ "@atlaskit/primitives": "^7.2.0",
40
+ "@atlaskit/textfield": "^6.3.0",
41
+ "@atlaskit/theme": "^12.9.0",
42
+ "@atlaskit/tokens": "^1.50.0",
43
+ "@atlaskit/tooltip": "^18.4.0",
44
+ "@babel/runtime": "^7.0.0",
45
+ "@emotion/react": "^11.7.1",
46
+ "lodash": "^4.17.21",
47
+ "raf-schd": "^4.0.3"
48
+ },
49
+ "devDependencies": {
50
+ "@af/visual-regression": "*",
51
+ "@atlaskit/editor-plugin-block-type": "^3.6.0",
52
+ "@atlaskit/editor-plugin-text-formatting": "^1.7.0",
53
+ "@testing-library/react": "^12.1.5",
54
+ "@testing-library/user-event": "^14.4.3",
55
+ "mockdate": "^3.0.5",
56
+ "raf-stub": "^2.0.1",
57
+ "react-dom": "^16.8.0"
58
+ },
59
+ "peerDependencies": {
60
+ "react": "^16.8.0",
61
+ "react-intl-next": "npm:react-intl@^5.18.1"
62
+ },
63
+ "techstack": {
64
+ "@atlassian/frontend": {
65
+ "import-structure": ["atlassian-conventions"],
66
+ "circular-dependencies": ["file-and-folder-level"]
67
+ },
68
+ "@repo/internal": {
69
+ "dom-events": "use-bind-event-listener",
70
+ "analytics": ["analytics-next"],
71
+ "design-tokens": ["color"],
72
+ "theming": ["react-context"],
73
+ "ui-components": ["lite-mode"],
74
+ "deprecation": "no-deprecated-imports",
75
+ "styling": ["emotion", "emotion"],
76
+ "imports": ["import-no-extraneous-disable-for-examples-and-docs"]
77
+ }
78
+ },
79
+ "stricter": {
80
+ "no-unused-dependencies": {
81
+ "exclude": ["@atlaskit/editor-plugin-analytics"]
82
+ }
83
+ }
84
+ }