-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "downflux",
"version": "1.2.1",
"description": "A modular media downflux tool",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": {
"default": "./package.json"
}
},
"files": [
"dist"
],
"scripts": {
"docs": "typedoc",
"docs:md": "typedoc --options typedoc-md.json",
"build": "tsup",
"dev": "tsup --watch",
"prepare": "npm run build",
"prepublishOnly": "pnpm run build",
"pack:dry-run": "npm pack --dry-run",
"lint:test": "eslint .",
"lint:fix": "eslint --fix .",
"test": "TZ=UTC jest --setupFiles dotenv/config --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"test:run": "tsx test/test.ts",
"format": "prettier --write \"packages/**/*.ts\" \"scripts/**/*.ts\"",
"generate": "tsx scripts/codegen/generate.ts",
"make:index": "tsx scripts/make-index.ts",
"make:registry": "tsx scripts/make-registry.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudgrids/downflux.git"
},
"keywords": [
"downflux",
"downloader",
"scraper",
"media"
],
"author": "cloudgrids <cloudgrids@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudgrids/downflux/issues"
},
"homepage": "https://github.com/cloudgrids/downflux#readme",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.32",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.10",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"execa": "^9.6.1",
"ffmpeg-static": "^5.3.0",
"http": "0.0.1-security",
"undici": "^8.1.0"
}
}