-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
78
79
80
81
82
{
"name": "autofetcher-ig-stories-to-gdrive",
"version": "4.3.1",
"description": "A no-code tool that lets you easily save the Instagram Stories of any user to your Google Drive",
"license": "AGPL-3.0",
"author": "Chris K.Y. Fung (https://github.com/chriskyfung)",
"homepage": "https://github.com/chriskyfung/AutoFetcher-IG-Stories-to-GDrive#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chriskyfung/AutoFetcher-IG-Stories-to-GDrive.git"
},
"bugs": {
"url": "https://github.com/chriskyfung/AutoFetcher-IG-Stories-to-GDrive/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/chriskyfung"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/chrisfungky"
}
],
"keywords": [
"instagram",
"google-drive",
"google-apps-script",
"instagram-story",
"instagram-stories",
"instagram-bot",
"instagram-downloader"
],
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=10.1.0"
},
"type": "module",
"main": "src/main.js",
"scripts": {
"login": "npx clasp login",
"logout": "npx clasp logout",
"pull": "npx clasp pull",
"push": "npx clasp push",
"push:watch": "npx clasp push -w",
"status": "npx clasp status",
"open": "npx clasp open",
"deployments": "npx clasp deployments",
"versions": "npx clasp versions",
"logs": "npx clasp logs",
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint --fix .",
"prettier": "prettier **/*.{js,json} --write --ignore-path .eslintignore",
"build": "rollup -c",
"test": "jest --config jest.config.cjs",
"start:jekyll": "cd docs && bundle exec jekyll serve",
"start:jekyll:windows": "cd docs && bundle exec jekyll serve",
"version:github-pages": "cd docs && bundle exec github-pages versions",
"version:jekyll": "cd docs && bundle exec jekyll --version"
},
"dependencies": {
"apps-script-oauth2": "github:googleworkspace/apps-script-oauth2"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^9.11.1",
"@google/clasp": "^2.4.2",
"@rollup/plugin-multi-entry": "^6.0.1",
"@types/google-apps-script": "^1.0.83",
"babel-jest": "^29.7.0",
"babel-polyfill": "^6.26.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0"
}
}