@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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +34 -0
  3. package/package.json +27 -22
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Paul
3
+ Copyright (c) 2022 Weaverse
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- "version": "2.5.1",
3
- "license": "MIT",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
6
- "module": "dist/index.mjs",
7
- "publishConfig": {
8
- "access": "public"
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
- "files": [
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
- "name": "@weaverse/core",
24
- "author": "Weaverse Team",
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
  }