@gravito/stasis 1.0.0-beta.5 → 1.0.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/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@gravito/stasis",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "description": "Standard Cache Orbit for Galaxy Architecture",
8
- "module": "./dist/index.mjs",
9
- "main": "./dist/index.cjs",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.js",
10
10
  "type": "module",
11
- "types": "./dist/index.d.ts",
11
+ "types": "dist/index.d.ts",
12
12
  "exports": {
13
13
  ".": {
14
14
  "types": "./dist/index.d.ts",
15
- "import": "./dist/index.mjs",
15
+ "import": "./dist/index.js",
16
16
  "require": "./dist/index.cjs"
17
17
  }
18
18
  },
@@ -22,9 +22,9 @@
22
22
  "LICENSE"
23
23
  ],
24
24
  "scripts": {
25
- "build": "bun run build.ts",
25
+ "build": "tsup src/index.ts --format esm,cjs --dts",
26
26
  "test": "bun test",
27
- "typecheck": "tsc --noEmit"
27
+ "typecheck": "bun tsc -p tsconfig.json --noEmit --skipLibCheck"
28
28
  },
29
29
  "keywords": [
30
30
  "gravito",
@@ -36,14 +36,15 @@
36
36
  "author": "Carl Lee <carllee0520@gmail.com>",
37
37
  "license": "MIT",
38
38
  "peerDependencies": {
39
- "gravito-core": "1.0.0-beta.5",
40
- "@gravito/plasma": "1.0.0-beta.5"
39
+ "@gravito/core": "workspace:*",
40
+ "@gravito/plasma": "workspace:*"
41
41
  },
42
42
  "devDependencies": {
43
- "gravito-core": "1.0.0-beta.5",
44
- "@gravito/plasma": "1.0.0-beta.5",
45
- "hono": "^4.11.1",
43
+ "@gravito/plasma": "workspace:*",
44
+ "@gravito/core": "workspace:*",
45
+ "@gravito/photon": "workspace:*",
46
46
  "bun-types": "latest",
47
+ "tsup": "^8.5.1",
47
48
  "typescript": "^5.9.3"
48
49
  },
49
50
  "homepage": "https://github.com/gravito-framework/gravito#readme",
@@ -52,4 +53,4 @@
52
53
  "url": "git+https://github.com/gravito-framework/gravito.git",
53
54
  "directory": "packages/stasis"
54
55
  }
55
- }
56
+ }