@event-driven-io/emmett-sqlite 0.25.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/dist/cli.cjs +1 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +2 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +1 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -0
- package/package.json +78 -0
package/dist/cli.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";//# sourceMappingURL=cli.cjs.map
|
package/dist/cli.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/emmett/emmett/src/packages/emmett-sqlite/dist/cli.cjs"],"names":[],"mappings":"AAAA","file":"/home/runner/work/emmett/emmett/src/packages/emmett-sqlite/dist/cli.cjs"}
|
package/dist/cli.d.cts
ADDED
package/dist/cli.d.ts
ADDED
package/dist/cli.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/emmett/emmett/src/packages/emmett-sqlite/dist/index.cjs"],"names":[],"mappings":"AAAA","file":"/home/runner/work/emmett/emmett/src/packages/emmett-sqlite/dist/index.cjs"}
|
package/dist/index.d.cts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@event-driven-io/emmett-sqlite",
|
|
3
|
+
"version": "0.25.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Emmett - SQLite - Event Sourcing development made simple",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsup",
|
|
8
|
+
"build:ts": "tsc",
|
|
9
|
+
"build:ts:watch": "tsc -b --watch",
|
|
10
|
+
"test": "run-s test:unit test:int test:e2e",
|
|
11
|
+
"test:unit": "glob -c \"node --import tsx --test\" **/*.unit.spec.ts",
|
|
12
|
+
"test:int": "glob -c \"node --import tsx --test\" **/*.int.spec.ts",
|
|
13
|
+
"test:e2e": "glob -c \"node --import tsx --test\" **/*.e2e.spec.ts",
|
|
14
|
+
"test:watch": "node --import tsx --test --watch",
|
|
15
|
+
"test:unit:watch": "glob -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
|
|
16
|
+
"test:int:watch": "glob -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
|
|
17
|
+
"test:e2e:watch": "glob -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts",
|
|
18
|
+
"benchmark": "node --import tsx src/benchmarks/index.ts",
|
|
19
|
+
"flamegraph": "0x -D \"0x/{pid}\" -- node --import tsx src/benchmarks/ox.ts"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/event-driven-io/emmett.git"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"Event Sourcing"
|
|
27
|
+
],
|
|
28
|
+
"author": " ",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/event-driven-io/emmett/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://event-driven-io.github.io/emmett/",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/index.d.cts",
|
|
41
|
+
"default": "./dist/index.cjs"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"./cli": {
|
|
45
|
+
"import": {
|
|
46
|
+
"types": "./dist/cli.d.ts",
|
|
47
|
+
"default": "./dist/cli.js"
|
|
48
|
+
},
|
|
49
|
+
"require": {
|
|
50
|
+
"types": "./dist/cli.d.cts",
|
|
51
|
+
"default": "./dist/cli.cjs"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"typesVersions": {
|
|
56
|
+
"*": {
|
|
57
|
+
".": [
|
|
58
|
+
"./dist/index.d.ts"
|
|
59
|
+
],
|
|
60
|
+
"cli": [
|
|
61
|
+
"./dist/cli.d.ts"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"main": "./dist/index.cjs",
|
|
66
|
+
"module": "./dist/index.js",
|
|
67
|
+
"types": "./dist/index.d.ts",
|
|
68
|
+
"files": [
|
|
69
|
+
"dist"
|
|
70
|
+
],
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@types/sqlite3": "^3.1.11"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"@event-driven-io/emmett": "0.25.0",
|
|
76
|
+
"sqlite3": "^5.1.7"
|
|
77
|
+
}
|
|
78
|
+
}
|