-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 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
{
"name": "dtwitter",
"version": "4.1.1",
"description": "Download photos, videos and HQ GIFs from a public tweet",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/heismauri/dtwitter.git"
},
"author": "heismauri",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/heismauri/dtwitter/issues"
},
"homepage": "https://dtwitter.heismauri.com",
"scripts": {
"start": "wrangler dev",
"build": "wrangler deploy --dry-run --outdir dist",
"test": "yarn build && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"lint": "eslint . --ext .js",
"deploy": "yarn lint && yarn test && wrangler deploy"
},
"devDependencies": {
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.5.0",
"jest": "29.7.0",
"jest-environment-miniflare": "2.14.2",
"miniflare": "3.20240610.0",
"undici": "^5.28.2",
"wrangler": "3.60.3"
}
}