forked from dfahlander/dexie-encrypted
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "dexie-encrypted",
"version": "2.0.0",
"description": "Encryption middleware for Dexie",
"main": "dist",
"license": "MIT",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/mark43/dexie-encrypted.git"
},
"dependencies": {
"@stablelib/utf8": "1.0.0",
"dexie-export-import": "^4.0.7",
"tslib": "^2.6.0",
"tweetnacl": "1.0.3",
"typeson": "5.18.2",
"typeson-registry": "1.0.0-alpha.38"
},
"devDependencies": {
"@types/jest": "29.5.3",
"@types/node": "^20.4.1",
"dexie": "^3.2.4",
"eslint": "^8.44.0",
"fake-indexeddb": "^2.1.1",
"jest": "29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^3.0.0",
"text-encoding": "^0.7.0",
"ts-jest": "29.1.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"dexie": "^3.0.0 || ^4.0.0-alpha.4"
},
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier index.js README.md --write"
}
}