-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "tweet-to-markdown",
"version": "2.4.4",
"description": "Quickly save Tweets as Markdown files.",
"main": "dist/main.js",
"repository": "https://github.com/kbravh/tweet-to-markdown.git",
"author": "Karey Higuera <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/main.js",
"src/models.ts"
],
"keywords": [
"tweet",
"markdown",
"roam",
"md"
],
"bin": {
"ttm": "dist/main.js"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"dependencies": {
"array.prototype.flatmap": "^1.2.5",
"axios": "^0.21.1",
"axios-retry": "^3.1.8",
"chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"html-entities": "^2.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.2.1",
"@types/array.prototype.flatmap": "^1.2.2",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"c8": "^7.12.0",
"eslint": "^7.32.0",
"msw": "^0.44.2",
"rollup": "^2.32.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"vite": "^3.0.4",
"vitest": "^0.21.0"
}
}