@tridion-sites/extensions 0.5.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/CHANGELOG.md +95 -0
- package/LICENSE.md +322 -0
- package/dist/index.d.ts +3214 -0
- package/dist/index.js +1451 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/package.json +62 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.20.1"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tridion-sites/extensions",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Tridion Sites Extensions API",
|
|
5
|
+
"author": "RWS",
|
|
6
|
+
"homepage": "https://www.rws.com",
|
|
7
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"typings": "dist/index.d.ts",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"declarationMap": true,
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://stash.sdl.com/scm/tdx/tridion-sites.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://jira.sdl.com/projects/DXUI/issues/"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist/**/*"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "rollup -c && yarn run docs:extract --local && rimraf dist/dts",
|
|
25
|
+
"build:ci": "rollup -c && yarn run docs:extract && rimraf dist/dts",
|
|
26
|
+
"clean": "rimraf dist",
|
|
27
|
+
"dev": "rollup -c -w",
|
|
28
|
+
"lint": "eslint . --fix && prettier --write \"src/**/*\"",
|
|
29
|
+
"prepublish": "yarn build"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"@tridion-sites/models": "0.1.0",
|
|
33
|
+
"@tridion-sites/open-api-client": "1.0.4",
|
|
34
|
+
"react": "18.2.0",
|
|
35
|
+
"react-dom": "18.2.0",
|
|
36
|
+
"react-is": "18.2.0",
|
|
37
|
+
"react-query": "3.39.3",
|
|
38
|
+
"styled-components": "5.3.6",
|
|
39
|
+
"tinymce": "6.3.1"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@rollup/plugin-commonjs": "24.0.1",
|
|
43
|
+
"@rollup/plugin-json": "6.0.0",
|
|
44
|
+
"@rollup/plugin-node-resolve": "15.0.1",
|
|
45
|
+
"@rollup/plugin-typescript": "11.0.0",
|
|
46
|
+
"@tridion-sites/models": "0.1.0",
|
|
47
|
+
"@tridion-sites/open-api-client": "1.0.4",
|
|
48
|
+
"@tridion/graphene": "1.30.1",
|
|
49
|
+
"@types/react": "18.0.27",
|
|
50
|
+
"react": "18.2.0",
|
|
51
|
+
"react-dom": "18.2.0",
|
|
52
|
+
"react-is": "18.2.0",
|
|
53
|
+
"rimraf": "4.1.2",
|
|
54
|
+
"rollup": "3.11.0",
|
|
55
|
+
"rollup-plugin-delete": "2.0.0",
|
|
56
|
+
"rollup-plugin-node-externals": "5.1.0",
|
|
57
|
+
"styled-components": "5.3.6",
|
|
58
|
+
"tinymce": "6.3.1",
|
|
59
|
+
"typescript": "4.9.4",
|
|
60
|
+
"typescript-transform-paths": "3.4.6"
|
|
61
|
+
}
|
|
62
|
+
}
|