-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 809 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@runt/schema",
"version": "0.12.0",
"description": "This package.json is solely here to make linking possible for npm users",
"type": "module",
"main": "./mod.ts",
"types": "./mod.ts",
"exports": {
".": {
"import": "./mod.ts",
"types": "./mod.ts"
},
"./queries": {
"import": "./queries/index.ts",
"types": "./queries/index.ts"
}
},
"files": [
"**/*.ts",
"README.md"
],
"dependencies": {
"@livestore/livestore": "^0.3.1",
"fractional-indexing": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/runtimed/runt.git",
"directory": "packages/schema"
},
"license": "BSD-3-Clause",
"keywords": [
"anode",
"schema",
"livestore",
"event-sourcing",
"typescript"
]
}