This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.38 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
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
{
"name": "@hueyy/kenobi",
"version": "1.0.3",
"description": "looks for broken links in tweets",
"bugs": {
"url": "https://github.com/hueyy/kenobi/issues"
},
"repository": "hueyy/kenobi",
"license": "MIT",
"author": "Huey Lee <hello@huey.xyz>",
"main": "index.js",
"bin": "dist/index.js",
"scripts": {
"babel-node": "babel-node -x \".ts\",\".tsx\" src/cli.tsx",
"build": "babel src -d dist -x \".ts\",\".tsx\" --copy-files --source-maps",
"lint:staged": "lint-staged",
"prepare": "husky install",
"prepublish": "npm run build",
"publish": "npm publish --access public",
"start:dev": "nodemon -e ts --exec npm run babel-node",
"start": "node dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.{ts,d.ts}": [
"tsc --allowSyntheticDefaultImports --noEmit --esModuleInterop --moduleResolution node --skipLibCheck --resolveJsonModule --downlevelIteration --lib ESNEXT,ES2020.String,dom"
],
"*.{ts,js,json}": [
"eslint --fix --ignore-pattern"
],
"package.json": [
"npx sort-package-json"
]
},
"dependencies": {
"@babel/preset-react": "^7.14.5",
"commander": "^7.2.0",
"ink": "^3.0.8",
"memoize-fs": "^2.2.0",
"parse-domain": "^3.0.3",
"react": "^17.0.2",
"twitter-v2": "^1.1.0",
"whoiser": "^1.12.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/eslint-plugin": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/node": "^15.12.3",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"dotenv": "^10.0.0",
"eslint": "7.28.0",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.7.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-unicorn": "^33.0.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=v14.17.0"
},
"homeppage": "https://github.com/hueyy/kenobi"
}