@akza/core 0.0.1
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/README.md +10 -0
- package/index.js +11 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @akza/core (placeholder)
|
|
2
|
+
|
|
3
|
+
Reserves the **`@akza`** npm scope for Akza. Publishing this one package under the
|
|
4
|
+
`akza` npm org locks the entire `@akza/*` scope — only org members can ever publish
|
|
5
|
+
to it.
|
|
6
|
+
|
|
7
|
+
Real packages (`@akza/sdk`, `@akza/ui`, `@akza/vue`) ship later.
|
|
8
|
+
|
|
9
|
+
- Website: https://akza.io
|
|
10
|
+
- Source: https://github.com/akzaio/akza
|
package/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Reserved placeholder in the @akza npm scope. Publishing this package locks the
|
|
2
|
+
// whole @akza/* scope to the "akza" npm org. The real SDK ships later.
|
|
3
|
+
//
|
|
4
|
+
// See https://akza.io
|
|
5
|
+
'use strict';
|
|
6
|
+
|
|
7
|
+
module.exports = {
|
|
8
|
+
name: '@akza/core',
|
|
9
|
+
homepage: 'https://akza.io',
|
|
10
|
+
placeholder: true,
|
|
11
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@akza/core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved placeholder in the @akza scope for Akza's future JS/Vue SDK. See https://akza.io",
|
|
5
|
+
"keywords": ["akza", "cms", "admin-panel", "laravel"],
|
|
6
|
+
"homepage": "https://akza.io",
|
|
7
|
+
"license": "AGPL-3.0-or-later",
|
|
8
|
+
"author": "Akza <anrail@akza.io>",
|
|
9
|
+
"repository": { "type": "git", "url": "git+https://github.com/akzaio/akza.git" },
|
|
10
|
+
"bugs": { "url": "https://github.com/akzaio/akza/issues" },
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"files": ["index.js", "README.md"],
|
|
13
|
+
"publishConfig": { "access": "public" }
|
|
14
|
+
}
|