@telia-ace/alliance-docs 1.0.1-next.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 ADDED
@@ -0,0 +1,8 @@
1
+ # @telia-ace/alliance-docs
2
+
3
+ ## 1.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - af1db6d: Modernize documentation.
8
+ - @telia-ace/alliance-ui@1.0.14-next.1
package/LICENSE.txt ADDED
@@ -0,0 +1,9 @@
1
+ (c) Copyright Telia Company AB 2023
2
+
3
+ This software may be used and/or copied only with the written
4
+ permission from Telia Company AB, or in accordance with
5
+ the terms and conditions stipulated in the agreement/contract
6
+ under which the software has been supplied.
7
+ All rights reserved.
8
+
9
+ Software packages under the scopes @telia-ace, @webprovisions and @webprovisions-registry are also subjected to the above statement.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # ACE Alliance Docs
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@telia-ace/alliance-docs",
3
+ "version": "1.0.1-next.0",
4
+ "type": "module",
5
+ "files": [
6
+ "LICENSE.txt",
7
+ "README.md",
8
+ "CHANGELOG.md"
9
+ ],
10
+ "devDependencies": {
11
+ "vitepress": "latest"
12
+ },
13
+ "dependencies": {
14
+ "@telia-ace/alliance-ui": "1.0.14-next.1"
15
+ },
16
+ "scripts": {
17
+ "dev": "vitepress dev content",
18
+ "build:prod": "vitepress build content"
19
+ }
20
+ }