-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"scripts": {
"compile": "npx rimraf dist/ && tsc --declaration",
"prepublish": "npm run compile",
"test": "mocha --import=tsx",
"format": "npx prettier --trailing-comma es5 --write ."
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "@fyears/rclone-crypt",
"version": "0.0.7",
"description": "RClone Crypt",
"repository": {
"type": "git",
"url": "git+https://github.com/fyears/rclone-crypt.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"encryption"
],
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/pkcs7-padding": "^0.1.3",
"mocha": "^10.3.0",
"npm-check-updates": "^16.14.17",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"dependencies": {
"@fyears/eme": "^0.0.3",
"@noble/ciphers": "^0.5.1",
"@noble/hashes": "^1.4.0",
"base32768": "^3.0.1",
"pkcs7-padding": "^0.1.1",
"rfc4648": "^1.5.3"
}
}