-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
47
48
49
50
{
"name": "lucid-ts-sdk",
"version": "0.1.3-0",
"description": "Lucid KV TypeScript wrapper 🍬 High performance and distributed KV store accessible through an HTTP API.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"keywords": [
"lucid",
"lucid-kv",
"key-value",
"wrapper",
"kvstore",
"http-client",
"api-wrapper",
"typescript"
],
"directories": {
"lib": "src"
},
"scripts": {
"build": "tsc",
"docs": "rm -rf docs && typedoc --out docs src && touch docs/.nojekyll",
"docs-publish": "yarn docs && gh-pages -d docs -t && rm -rf docs",
"test": "echo No tests available yet",
"prepublishOnly": "yarn test && yarn build"
},
"homepage": "https://github.com/lucid-kv/ts-sdk#readme",
"bugs": {
"url": "https://github.com/lucid-kv/ts-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucid-kv/ts-sdk.git"
},
"author": "rigwild <me@rigwild.dev> (https://rigwild.dev/)",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"gh-pages": "^2.1.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
}
}