-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.07 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
{
"name": "cinnagram",
"version": "0.2.2",
"description": "Simple Telegram API handler",
"license": "ISC",
"author": {
"email": "[email protected]",
"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",
"check": "biome check ./src",
"fix": "biome check --fix --unsafe ./src",
"prepack": "npm run build",
"test": "npm run check && npm run build:dev && mocha './build/dev/test'"
},
"dependencies": {
"axios": "1.7.9"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chai": "5.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.12.0",
"@types/sinon": "17.0.3",
"chai": "5.1.2",
"mocha": "11.1.0",
"sinon": "19.0.2",
"tsup": "8.3.6",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}