-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "denolcr",
"version": "0.1.0",
"description": "Deno port of Rclone, rewriting functionality using Web API.",
"engines": {
"node": ">=22.2.0",
"deno": ">=1.44.4"
},
"bin": {
"denolcr": "main.js"
},
"main": "mod.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sntran/denolcr.git"
},
"scripts": {
"start": "node main.js",
"test": "node --test",
"worker": "npx wrangler pages dev ."
},
"author": "Trần Nguyễn Sơn",
"license": "ISC",
"bugs": {
"url": "https://github.com/sntran/denolcr/issues"
},
"homepage": "https://github.com/sntran/denolcr#readme",
"dependencies": {
"@noble/ciphers": "^0.5.3",
"@noble/hashes": "^1.4.0",
"@sntran/html-rewriter": "^0.2.0",
"@sntran/serve": "^0.0.1",
"@std/cli": "npm:@jsr/std__cli@^1.0.0-rc.1",
"@std/crypto": "npm:@jsr/std__crypto@^1.0.0-rc.1",
"@std/encoding": "npm:@jsr/std__encoding@^1.0.0-rc.2",
"@std/fmt": "npm:@jsr/std__fmt@^0.225.4",
"@std/http": "npm:@jsr/std__http@^0.224.5",
"@std/ini": "npm:@jsr/std__ini@^0.225.1",
"@std/media-types": "npm:@jsr/std__media-types@^1.0.0-rc.1",
"@std/path": "npm:@jsr/std__path@^1.0.0-rc.2",
"aes-js": "^3.1.2",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0"
},
"devDependencies": {
"fast-check": "^3.19.0"
}
}