alinea 0.0.0 → 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/dist/cli.d.ts +1 -0
- package/dist/cli.js +3 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +39 -0
- package/dist/index.js.map +7 -0
- package/package.json +45 -9
- package/readme.md +0 -1
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@alinea/cli';
|
package/dist/cli.js
ADDED
package/dist/cli.js.map
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { createConfig, schema, Tree, workspace } from '@alinea/core';
|
|
2
|
+
export type { Config, Schema, TextDoc, Type, Workspace } from '@alinea/core';
|
|
3
|
+
export { Backend, Server } from '@alinea/backend';
|
|
4
|
+
export { MediaSchema } from '@alinea/dashboard/schema/MediaSchema';
|
|
5
|
+
export { BrowserPreview } from '@alinea/dashboard/view/preview/BrowserPreview';
|
|
6
|
+
export { code } from '@alinea/input.code';
|
|
7
|
+
export { link } from '@alinea/input.link';
|
|
8
|
+
export { list } from '@alinea/input.list';
|
|
9
|
+
export { number } from '@alinea/input.number';
|
|
10
|
+
export { path } from '@alinea/input.path';
|
|
11
|
+
export { richText } from '@alinea/input.richtext';
|
|
12
|
+
export { select } from '@alinea/input.select';
|
|
13
|
+
export { tab, tabs } from '@alinea/input.tabs';
|
|
14
|
+
export { text } from '@alinea/input.text';
|
|
15
|
+
export { Collection, Cursor, Expr } from '@alinea/store';
|
|
16
|
+
import type { Store } from '@alinea/store';
|
|
17
|
+
export declare type TypeOf<T> = Store.TypeOf<T>;
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
import { createConfig, schema, Tree, workspace } from "@alinea/core";
|
|
3
|
+
import { Backend, Server } from "@alinea/backend";
|
|
4
|
+
import { MediaSchema } from "@alinea/dashboard/schema/MediaSchema.js";
|
|
5
|
+
import { BrowserPreview } from "@alinea/dashboard/view/preview/BrowserPreview.js";
|
|
6
|
+
import { code } from "@alinea/input.code";
|
|
7
|
+
import { link } from "@alinea/input.link";
|
|
8
|
+
import { list } from "@alinea/input.list";
|
|
9
|
+
import { number } from "@alinea/input.number";
|
|
10
|
+
import { path } from "@alinea/input.path";
|
|
11
|
+
import { richText } from "@alinea/input.richtext";
|
|
12
|
+
import { select } from "@alinea/input.select";
|
|
13
|
+
import { tab, tabs } from "@alinea/input.tabs";
|
|
14
|
+
import { text } from "@alinea/input.text";
|
|
15
|
+
import { Collection, Cursor, Expr } from "@alinea/store";
|
|
16
|
+
export {
|
|
17
|
+
Backend,
|
|
18
|
+
BrowserPreview,
|
|
19
|
+
Collection,
|
|
20
|
+
Cursor,
|
|
21
|
+
Expr,
|
|
22
|
+
MediaSchema,
|
|
23
|
+
Server,
|
|
24
|
+
Tree,
|
|
25
|
+
code,
|
|
26
|
+
createConfig,
|
|
27
|
+
link,
|
|
28
|
+
list,
|
|
29
|
+
number,
|
|
30
|
+
path,
|
|
31
|
+
richText,
|
|
32
|
+
schema,
|
|
33
|
+
select,
|
|
34
|
+
tab,
|
|
35
|
+
tabs,
|
|
36
|
+
text,
|
|
37
|
+
workspace
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/index.ts"],
|
|
4
|
+
"sourcesContent": ["// Config creation\nexport {createConfig, schema, Tree, workspace} from '@alinea/core'\nexport type {Config, Schema, TextDoc, Type, Workspace} from '@alinea/core'\n\n// Backend\nexport {Backend, Server} from '@alinea/backend'\n\n// Dashboard\nexport {MediaSchema} from '@alinea/dashboard/schema/MediaSchema'\nexport {BrowserPreview} from '@alinea/dashboard/view/preview/BrowserPreview'\n\n// Included inputs\nexport {code} from '@alinea/input.code'\nexport {link} from '@alinea/input.link'\nexport {list} from '@alinea/input.list'\nexport {number} from '@alinea/input.number'\nexport {path} from '@alinea/input.path'\nexport {richText} from '@alinea/input.richtext'\nexport {select} from '@alinea/input.select'\nexport {tab, tabs} from '@alinea/input.tabs'\nexport {text} from '@alinea/input.text'\n\n// Store\nexport {Collection, Cursor, Expr} from '@alinea/store'\nimport type {Store} from '@alinea/store'\nexport type TypeOf<T> = Store.TypeOf<T>\n"],
|
|
5
|
+
"mappings": ";AACA;AAIA;AAGA;AACA;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"bin": "./dist/cli.js",
|
|
3
|
+
"name": "alinea",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/alineacms/alinea.git"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./dist/index.js",
|
|
13
|
+
"./*": "./dist/*"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": [
|
|
19
|
+
"./dist/cli.js"
|
|
20
|
+
],
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
"*": {
|
|
23
|
+
"*": [
|
|
24
|
+
"./dist/*"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@alinea/backend": "0.0.1",
|
|
30
|
+
"@alinea/cli": "0.0.1",
|
|
31
|
+
"@alinea/core": "0.0.1",
|
|
32
|
+
"@alinea/css": "0.0.1",
|
|
33
|
+
"@alinea/dashboard": "0.0.1",
|
|
34
|
+
"@alinea/input.code": "0.0.1",
|
|
35
|
+
"@alinea/input.link": "0.0.1",
|
|
36
|
+
"@alinea/input.list": "0.0.1",
|
|
37
|
+
"@alinea/input.number": "0.0.1",
|
|
38
|
+
"@alinea/input.path": "0.0.1",
|
|
39
|
+
"@alinea/input.richtext": "0.0.1",
|
|
40
|
+
"@alinea/input.select": "0.0.1",
|
|
41
|
+
"@alinea/input.tabs": "0.0.1",
|
|
42
|
+
"@alinea/input.text": "0.0.1",
|
|
43
|
+
"@alinea/store": "0.0.1"
|
|
44
|
+
}
|
|
45
|
+
}
|
package/readme.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# alinea
|