-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "expo-symbol-encrypt-message",
"version": "1.0.0",
"description": "Symbol's encrypted message compliant package for Expo.",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"module": "./dist/esm/index.js",
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"test": "jest"
},
"keywords": [
"symbol",
"expo",
"encrypt"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/create-hmac": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"create-hmac": "^1.1.7",
"crypto-browserify": "^3.12.0",
"tweetnacl": "^1.0.3",
"tweetnacl-ts": "^1.0.3"
}
}