-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
{
"name": "igdm",
"version": "1.4.3",
"description": "Send and receive Instagram direct message through CLI.",
"keywords": [
"instagram",
"cli",
"messaging"
],
"author": {
"email": "[email protected]",
"name": "Neil Richter",
"url": "https://nook.sh"
},
"homepage": "https://github.com/noook/igdm-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/noook/igdm-cli.git"
},
"license": "ISC",
"main": "dist/index.js",
"bin": {
"igdm": "dist/index.js"
},
"files": [
"dist/",
"scripts/",
"screenshots/",
"session.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --color",
"start": "babel-node --extensions '.ts' ./src/index.ts",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.js",
"tscheck": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/inquirer": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^8.2.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"core-js": "^3.21.1",
"dotenv": "^16.0.0",
"inquirer": "^8.2.2",
"instagram-private-api": "^1.45.3",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.5.5"
}
}