-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.47 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
{
"name": "iocompiler",
"version": "5.0.0-alpha.7",
"description": "Realtime i/o compiler bot of telegram",
"dependencies": {
"axios": "^1.3.4",
"jsshort": "^0.2.10",
"telegraf": "^4.12.2",
"typescript": "^5.5.4",
"which": "^4.0.0"
},
"main": "lib/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.c",
"lib/**/*.h",
"types/**/*.d.ts",
"types/**/*.d.ts.map",
"LICENSE",
"README.md",
"NOTICE.txt",
"packageconf.js"
],
"scripts": {
"build": "tsc && node copyfiles.js",
"test": "tsc && node copyfiles.js && tsx myfile.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PanditSiddharth/compilers.git"
},
"keywords": [
"Compiler bot",
"Telegram bot",
"IO compiler",
"Pandit Siddharth",
"conpilers",
"python compiler",
"c/c++ compiler",
"node compiler",
"go compiler bot",
"java compiler bot",
"javascript compiler bot"
],
"author": {
"name": "Siddharth Sharma",
"email": "[email protected]",
"url": "https://telegram.me/PanditSiddharth"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PanditSiddharth/compilers/issues"
},
"homepage": "https://github.com/PanditSiddharth/compilers#readme",
"devDependencies": {
"@types/node": "^20.10.7",
"tsx": "^4.19.2"
}
}