-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 KB
/
package.json
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
40
41
42
43
44
45
46
{
"name": "xtdb-ts",
"version": "0.0.3",
"description": "An XTDB client library for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"prepublish": "tsc"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.js"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tekacs/xtdb-ts.git"
},
"author": "Amar Sood (tekacs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tekacs/xtdb-ts/issues"
},
"homepage": "https://github.com/tekacs/xtdb-ts#readme",
"dependencies": {
"@types/whatwg-url": "^8.2.1",
"cross-fetch": "^3.1.4",
"edn-data": "^0.2.0",
"immer": "^9.0.7",
"typescript": "^4.5.4",
"whatwg-url": "^11.0.0"
}
}