-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rocket-store",
"version": "0.10.20",
"description": "A simple, super fast and yet powerfull flat file database.",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.mjs",
"scripts": {
"test": "node test/test.js",
"benchmark": "node benchmark/benchmark.js",
"fixmjs_internal": "find dist/mjs -name '*.js' -exec sed -i '' 's/\\.js/\\.mjs/g' {} \\; && find dist/mjs -name '*.d.ts' -exec sed -i '' 's/\\.js/\\.d.ts/g' {} \\;",
"fixmjs_rename": "find dist/mjs -name '*.js' -exec bash -c 'mv \"$0\" \"${0%.js}.mjs\"' {} \\;",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run fixmjs_internal && npm run fixmjs_rename",
"watch": "npm run build -- --watch src",
"prepublish": "npm install typescript -g && npm run build"
},
"files": [
"dist",
"benchmark",
"examples",
"test",
"LICENSE",
"package.json",
"README.md"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/mjs/index.mjs"
},
"./src/*": "./src/*"
},
"directories": {
"test": "test",
"benchmark": "benchmark",
"doc": "doc",
"example": "examples",
"src": "src",
"dist": "dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paragi/rocket-store-node.git"
},
"keywords": [
"storage",
"database",
"key",
"value",
"store",
"key-value",
"flat",
"file",
"flat-file",
"file-files",
"flat file",
"filebase",
"database",
"document",
"record",
"serverless",
"collection",
"fast"
],
"author": "Simon Rigét <simon.riget@gmail.com>",
"contributors": [
"jshxr",
"Anton Sychev <anton@sychev.xyz> [https://sychev.xyz]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/paragi/rocket-store-node/issues"
},
"homepage": "https://github.com/paragi/rocket-store-node#readme",
"dependencies": {
"glob-to-regexp": ">0.4.0"
},
"peerDependencies": {
"rollup": ">=0.66.0"
},
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^4.22.4",
"typescript": "^5.2.2"
}
}