@gravito/core 1.0.0-beta.6

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 ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@gravito/core",
3
+ "version": "1.0.0-beta.6",
4
+ "description": "",
5
+ "module": "./dist/index.js",
6
+ "main": "./dist/index.cjs",
7
+ "type": "module",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./compat": {
16
+ "types": "./dist/compat.d.ts",
17
+ "import": "./dist/compat.js",
18
+ "require": "./dist/compat.cjs"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "scripts": {
27
+ "build": "bun run build.ts",
28
+ "test": "bun test",
29
+ "test:coverage": "bun test --coverage --coverage-threshold=80",
30
+ "test:ci": "bun test --coverage --coverage-threshold=80",
31
+ "lint": "biome lint ./src ./tests",
32
+ "lint:fix": "biome lint --write ./src ./tests",
33
+ "format": "biome format --write ./src ./tests",
34
+ "format:check": "biome format ./src ./tests",
35
+ "check": "biome check ./src ./tests",
36
+ "check:fix": "biome check --write ./src ./tests",
37
+ "typecheck": "bun tsc -p tsconfig.json --noEmit --skipLibCheck",
38
+ "prepublishOnly": "bun run typecheck && bun run test && bun run build"
39
+ },
40
+ "keywords": [],
41
+ "author": "Carl Lee <carllee0520@gmail.com>",
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/gravito-framework/gravito.git",
46
+ "directory": "packages/core"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/gravito-framework/gravito/issues"
50
+ },
51
+ "homepage": "https://github.com/gravito-framework/gravito#readme",
52
+ "engines": {
53
+ "node": ">=18.0.0"
54
+ },
55
+ "devDependencies": {
56
+ "bun-types": "latest",
57
+ "tsup": "^8.5.1",
58
+ "typescript": "^5.9.3"
59
+ },
60
+ "publishConfig": {
61
+ "access": "public",
62
+ "registry": "https://registry.npmjs.org/"
63
+ },
64
+ "dependencies": {
65
+ "@gravito/photon": "workspace:*"
66
+ }
67
+ }