-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "anontransfer",
"version": "1.0.5",
"description": "A NodeJS wrapper for the AnonTransfer API - Clean Architecture Implementation",
"homepage": "https://github.com/xalsie/anonTransfer#readme",
"bugs": {
"url": "https://github.com/xalsie/anonTransfer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xalsie/anonTransfer.git"
},
"license": "ISC",
"author": "LeGrizzly",
"type": "module",
"main": "dist/lib.js",
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run build && node dist/tests/progress.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:format": "prettier --write .",
"prepublishOnly": "npm run build"
},
"keywords": [
"anontransfer",
"file-upload",
"nodejs",
"typescript",
"clean-architecture",
"api-wrapper"
],
"devDependencies": {
"@eslint/js": "^9.31.0",
"@eslint/markdown": "^7.0.0",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"engines": {
"node": ">=24.0.0"
}
}