@f0rbit/corpus 0.1.6 → 0.1.7

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 (1) hide show
  1. package/package.json +71 -67
package/package.json CHANGED
@@ -1,69 +1,73 @@
1
1
  {
2
- "name": "@f0rbit/corpus",
3
- "version": "0.1.6",
4
- "description": "A functional snapshotting library for TypeScript with versioned data storage, lineage tracking, and multiple backend support",
5
- "module": "dist/index.js",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "type": "module",
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
13
- },
14
- "./cloudflare": {
15
- "import": "./dist/cloudflare.js",
16
- "types": "./dist/cloudflare.d.ts"
17
- },
18
- "./types": {
19
- "import": "./dist/types.js",
20
- "types": "./dist/types.d.ts"
21
- },
22
- "./schema": {
23
- "import": "./dist/schema.js",
24
- "types": "./dist/schema.d.ts"
25
- }
26
- },
27
- "files": [
28
- "dist"
29
- ],
30
- "scripts": {
31
- "build": "tsc -p tsconfig.build.json",
32
- "test": "bun test",
33
- "typecheck": "tsc --noEmit",
34
- "prepublishOnly": "npm run build",
35
- "docs:dev": "cd docs && bun run dev",
36
- "docs:build": "cd docs && bun run build",
37
- "docs:preview": "cd docs && bun run preview"
38
- },
39
- "repository": {
40
- "type": "git",
41
- "url": "git+https://github.com/f0rbit/corpus.git"
42
- },
43
- "keywords": [
44
- "snapshot",
45
- "versioning",
46
- "data-store",
47
- "lineage",
48
- "typescript"
49
- ],
50
- "author": "f0rbit",
51
- "license": "MIT",
52
- "bugs": {
53
- "url": "https://github.com/f0rbit/corpus/issues"
54
- },
55
- "homepage": "https://github.com/f0rbit/corpus#readme",
56
- "publishConfig": {
57
- "access": "public"
58
- },
59
- "devDependencies": {
60
- "@types/bun": "latest"
61
- },
62
- "peerDependencies": {
63
- "typescript": "^5",
64
- "zod": "^3"
65
- },
66
- "dependencies": {
67
- "drizzle-orm": "^0.44.7"
68
- }
2
+ "name": "@f0rbit/corpus",
3
+ "version": "0.1.7",
4
+ "description": "A functional snapshotting library for TypeScript with versioned data storage, lineage tracking, and multiple backend support",
5
+ "module": "dist/index.js",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.js"
14
+ },
15
+ "./cloudflare": {
16
+ "types": "./dist/cloudflare.d.ts",
17
+ "import": "./dist/cloudflare.js",
18
+ "require": "./dist/cloudflare.js"
19
+ },
20
+ "./types": {
21
+ "types": "./dist/types.d.ts",
22
+ "import": "./dist/types.js",
23
+ "require": "./dist/types.js"
24
+ },
25
+ "./schema": {
26
+ "types": "./dist/schema.d.ts",
27
+ "import": "./dist/schema.js",
28
+ "require": "./dist/schema.js"
29
+ }
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "scripts": {
35
+ "build": "tsc -p tsconfig.build.json",
36
+ "test": "bun test",
37
+ "typecheck": "tsc --noEmit",
38
+ "prepublishOnly": "npm run build",
39
+ "docs:dev": "cd docs && bun run dev",
40
+ "docs:build": "cd docs && bun run build",
41
+ "docs:preview": "cd docs && bun run preview"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/f0rbit/corpus.git"
46
+ },
47
+ "keywords": [
48
+ "snapshot",
49
+ "versioning",
50
+ "data-store",
51
+ "lineage",
52
+ "typescript"
53
+ ],
54
+ "author": "f0rbit",
55
+ "license": "MIT",
56
+ "bugs": {
57
+ "url": "https://github.com/f0rbit/corpus/issues"
58
+ },
59
+ "homepage": "https://github.com/f0rbit/corpus#readme",
60
+ "publishConfig": {
61
+ "access": "public"
62
+ },
63
+ "devDependencies": {
64
+ "@types/bun": "latest"
65
+ },
66
+ "peerDependencies": {
67
+ "typescript": "^5",
68
+ "zod": "^3"
69
+ },
70
+ "dependencies": {
71
+ "drizzle-orm": "^0.44.7"
72
+ }
69
73
  }