-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "calqz",
"private": true,
"version": "1.0.0",
"description": "A Telegram bot to help you evaluate math expressions, and generate math quizzes.",
"main": "dist/Code.js",
"dependencies": {
"@hkh12/node-calc": "^4.2.1"
},
"devDependencies": {
"@google/clasp": "^2.3.0",
"@hkh12/eslint-config": "^1.2.1",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/google-apps-script": "^1.0.14",
"eslint": "^7.1.0",
"rollup": "^2.11.2",
"rollup-plugin-dotenv": "^0.3.0"
},
"scripts": {
"build": "rollup -c && sed '$d' dist/Code.js --in-place && cp appsscript.json .clasp.json dist",
"push": "cd dist && clasp push && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkh12/calqz.git"
},
"keywords": [],
"author": "Hosein Khansari <hrk.x11@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hkh12/calqz/issues"
},
"homepage": "https://github.com/hkh12/calqz#readme"
}