-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 KB
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
{
"name": "codegyan",
"version": "0.1.3",
"description": "The official TypeScript library for the Codegyan API",
"author": "Codegyan <admin@codegyan.in>",
"types": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"type": "commonjs",
"packageManager": "yarn@1.22.22",
"files": [
"/dist",
"LICENSE.md",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Codegyan-LLC/codegyan-node.git"
},
"keywords": [
"codegyan",
"codegyan node",
"api",
"client",
"compiler api"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --build",
"prepare": "npm run build",
"clean": "tsc --build --clean"
},
"dependencies": {
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.4",
"formdata-node": "^4.3.2",
"node-fetch": "^2.6.7",
"axios": "^1.7.2"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.4.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-morph": "^19.0.0",
"ts-node": "^10.5.0",
"tsc-multi": "^1.1.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.8.2"
}
}