forked from felixrieseberg/slack-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "slack-archive",
"version": "1.6.1",
"description": "Create static HTML archives for your Slack workspaces",
"scripts": {
"prettier": "npx prettier --write src/*",
"cli": "ts-node src/cli.ts",
"html": "ts-node src/create-html.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run compile"
},
"bin": {
"slack-archive": "./bin/slack-archive.js"
},
"type": "module",
"keywords": [
"slack",
"export",
"download"
],
"repository": {
"type": "git",
"url": "https://github.com/felixrieseberg/slack-archive.git"
},
"author": "Felix Rieseberg <[email protected]>",
"license": "MIT",
"dependencies": {
"@slack/web-api": "^6.7.2",
"date-fns": "^2.28.0",
"emoji-datasource": "^14.0.0",
"es-main": "^1.0.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.0",
"lodash-es": "^4.17.21",
"node-fetch": "^2.6.7",
"ora": "^6.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"slack-markdown": "^0.2.0",
"trash": "^8.1.0"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"ts-node": {
"files": true
}
}