-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "nekdis",
"version": "0.14.0",
"description": "Object mapping, and more, for Redis and Node.js. Written in TypeScript.",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/typings/index.d.ts",
"require": "./dist/typings/index.js",
"default": "./dist/typings/index.js"
},
"./package.json": "./package.json",
"./dist/utils/symbols.js": null
},
"files": [
"./dist/"
],
"scripts": {
"test": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"build": "rm -rf ./dist && tsc && cp -r ./src/scripts ./dist/scripts",
"build:test": "tsc --noEmit",
"bench": "rm -rf ./bench-dist && cd benchmarks && tsc && cd .. && node bench-dist/dist/index.mjs"
},
"repository": "github:Didas-git/Nekdis",
"homepage": "https://github.com/Didas-git/Nekdis#readme",
"keywords": [
"redis",
"orm",
"odm",
"nekdis"
],
"license": "MIT",
"author": "DidaS <[email protected]>",
"devDependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@microsoft/tsdoc-config": "^0.16.2",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitest/coverage-v8": "^0.34.6",
"c8": "^8.0.1",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-tsdoc": "^0.2.17",
"redis-om": "0.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@infinite-fansub/logger": "^2.2.2",
"colours.js": "^3.1.2",
"redis": "^4.6.10",
"tslib": "^2.6.2"
}
}