-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.26 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
{
"name": "cinnagram",
"version": "0.2.2",
"description": "Simple Telegram API handler",
"license": "ISC",
"author": {
"email": "timur.moziev@gmail.com",
"name": "Timur Moziev",
"url": "https://timurrin.github.io/"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cinnabar-forge/cinnagram.git"
},
"scripts": {
"build": "tsup",
"build:dev": "tsc",
"fix": "prettier . --write && eslint --fix .",
"format": "prettier . --write",
"lint": "eslint --fix .",
"prepack": "npm run build",
"test": "prettier . -c && eslint --max-warnings 0 . && tsc && mocha './build/dev/test'"
},
"dependencies": {
"axios": "1.7.4"
},
"devDependencies": {
"@cinnabar-forge/eslint-plugin": "0.6.1",
"@cinnabar-forge/meta": "0.3.1",
"@types/chai": "4.3.17",
"@types/mocha": "10.0.7",
"@types/node": "22.3.0",
"@types/sinon": "17.0.3",
"chai": "5.1.1",
"mocha": "10.7.3",
"pre-commit": "1.2.2",
"sinon": "18.0.0",
"tsc-watch": "6.2.0",
"tsup": "8.2.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"pre-commit": [
"format",
"test"
]
}