-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.62 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
{
"name": "og-screenshots",
"version": "0.0.14",
"license": "AGPL-3.0-only",
"bin": {
"og-screenshots": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"keywords": [
"og",
"open graph",
"screenshot",
"cli",
"command line",
"tool",
"utility"
],
"scripts": {
"build": "rimraf dist && tsc && npm run copy-files",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava",
"copy-files": "copyfiles readme.md LICENSE dist/",
"bump": "npm version patch --force",
"prepublishOnly": "npm run bump && npm run build"
},
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.3.0",
"ink": "^4.4.1",
"ink-spinner": "^5.0.0",
"meow": "^13.2.0",
"p-map": "^7.0.2",
"react": "^18.3.1",
"rss-parser": "^3.13.0",
"sitemapper": "^3.2.8"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/react": "^18.3.1",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^6.1.2",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"ink-testing-library": "^3.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.9.1",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
}
}