@weaverse/core 2.5.1 → 2.6.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/LICENSE +1 -1
- package/README.md +34 -0
- package/package.json +27 -22
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @weaverse/core
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
`@weaverse/core` is the foundational package of the Weaverse ecosystem, providing the essential logic and building
|
|
6
|
+
blocks for Weaverse and Weaverse Items. This package offers framework-agnostic code, facilitating the creation of
|
|
7
|
+
consistent and reusable components across various Weaverse packages.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Core logic of the Weaverse platform.
|
|
12
|
+
- Framework-agnostic components for broad compatibility.
|
|
13
|
+
- Reusable codebase across different Weaverse packages.
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @weaverse/core
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
`@weaverse/core` is primarily used by other Weaverse packages like `@weaverse/react`, `@weaverse/hydrogen`, etc. It's
|
|
24
|
+
generally not used directly in projects but serves as a dependency for these framework-specific packages.
|
|
25
|
+
|
|
26
|
+
## Contributing
|
|
27
|
+
|
|
28
|
+
Contributions to the `@weaverse/core` package are welcome. Please refer to our contributing guidelines for more
|
|
29
|
+
information.
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
This project is created by The Weaverse Team ([https://weaverse.io](https://weaverse.io)) and is licensed under the MIT
|
|
34
|
+
License.
|
package/package.json
CHANGED
|
@@ -1,31 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
2
|
+
"name" : "@weaverse/core",
|
|
3
|
+
"author" : "Weaverse Team",
|
|
4
|
+
"description" : "Weaverse Core",
|
|
5
|
+
"version" : "2.6.0",
|
|
6
|
+
"license" : "MIT",
|
|
7
|
+
"main" : "dist/index.js",
|
|
8
|
+
"types" : "dist/index.d.ts",
|
|
9
|
+
"module" : "dist/index.mjs",
|
|
10
|
+
"repository" : {
|
|
11
|
+
"url" : "git+https://github.com/Weaverse/weaverse.git",
|
|
12
|
+
"directory" : "packages/core"
|
|
9
13
|
},
|
|
10
|
-
"
|
|
14
|
+
"publishConfig" : {
|
|
15
|
+
"access" : "public"
|
|
16
|
+
},
|
|
17
|
+
"files" : [
|
|
11
18
|
"dist/*"
|
|
12
19
|
],
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": ">=16"
|
|
20
|
+
"engines" : {
|
|
21
|
+
"node" : ">=16"
|
|
15
22
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"start": "npm run dev",
|
|
18
|
-
"dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --sourcemap",
|
|
19
|
-
"build": "tsup src/index.ts --format esm,cjs --dts --outDir dist",
|
|
20
|
-
"clean": "rimraf dist",
|
|
21
|
-
"prepublish": "npm run build"
|
|
23
|
+
"scripts" : {
|
|
24
|
+
"start" : "npm run dev",
|
|
25
|
+
"dev" : "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --sourcemap",
|
|
26
|
+
"build" : "tsup src/index.ts --format esm,cjs --dts --outDir dist",
|
|
27
|
+
"clean" : "rimraf dist",
|
|
28
|
+
"prepublish" : "npm run build"
|
|
22
29
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@stitches/core": "^1.2.8"
|
|
30
|
+
"dependencies" : {
|
|
31
|
+
"@stitches/core" : "^1.2.8"
|
|
27
32
|
},
|
|
28
|
-
"optionalDependencies": {
|
|
29
|
-
"@esbuild/darwin-x64": "*"
|
|
33
|
+
"optionalDependencies" : {
|
|
34
|
+
"@esbuild/darwin-x64" : "*"
|
|
30
35
|
}
|
|
31
36
|
}
|