-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
51
52
53
{
"name": "dynabase",
"version": "1.0.2",
"description": "World's fastest TKV database with KV support.",
"keywords": [
"database",
"kv",
"tkv",
"fast",
"speed",
"performance",
"nosql",
"key-value",
"in-memory"
],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./types/index.d.ts",
"prepare": "npm run build",
"repository": "https://github.com/HolaClient/dynabase",
"author": {
"name": "HolaClient",
"url": "https://github.com/HolaClient"
},
"engines": {
"node": ">=16.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.8.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/rename.js",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"types"
]
}