-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.18 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
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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@daiso-tech/core",
"private": false,
"version": "0.3.0",
"author": "Yousif Abdulkarim",
"license": "Apache-2.0",
"main": "./dist/cjs/_module.js",
"module": "./dist/esm/_module.js",
"types": "./dist/types/_module.d.ts",
"homepage": "https://yousif-khalil-abdulkarim.github.io/daiso-core/",
"repository": {
"type": "git",
"url": "https://github.com/yousif-khalil-abdulkarim/daiso-core.git"
},
"keywords": [
"Collection",
"Array",
"Iterable",
"AsyncIterable",
"Cache",
"Mongodb",
"Redis"
],
"files": [
"./dist"
],
"scripts": {
"test": "npx vitest run",
"test:watch": "npm run test -- watch",
"check": "npx tsc --project \"./tsconfig.json\"",
"lint": "npx eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npx eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"build": "npx rimraf dist && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "npx tsc --project \"./tsconfig.cjs.json\" && npx tsc-alias -p \"./tsconfig.cjs.json\"",
"build:esm": "npx tsc --project \"./tsconfig.esm.json\" && npx tsc-alias -p \"./tsconfig.esm.json\"",
"build:types": "npx tsc --project \"./tsconfig.types.json\" && npx tsc-alias -p \"./tsconfig.types.json\"",
"docs": "npx typedoc",
"release": "npm run build && npx changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@libsql/client": "^0.14.0",
"@testcontainers/mongodb": "^10.13.2",
"@testcontainers/redis": "^10.13.2",
"@types/better-sqlite3": "^7.6.11",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/eslint-plugin": "^1.0.3",
"better-sqlite3": "^11.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"eslint-plugin-vitest": "^0.5.4",
"ioredis": "^5.4.1",
"mongodb": "^6.10.0",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.5",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-merge-modules": "^6.0.0",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@libsql/client": "^0.4.1",
"better-sqlite3": "^11.5.0",
"ioredis": "^5.4.1",
"mongodb": "^6.10.0"
},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
},
"ioredis": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"@libsql/client": {
"optional": true
}
},
"dependencies": {
"@libsql/kysely-libsql": "^0.4.1",
"escape-string-regexp": "^5.0.0",
"kysely": "^0.27.4",
"superjson": "^2.2.1",
"uuid": "^11.0.2"
}
}