-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "avrasya",
"version": "1.0.25",
"description": "Avrasya is a fast and unique Node.js web framework designed for building web applications and APIs. Avrasya stands out with its simple usage, performance, and extensibility.",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"nodejs",
"typescript",
"web",
"server"
],
"author": "Muhtalip Dede",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/node": "^20.8.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThinkThread/avrasya.git"
},
"bugs": {
"url": "https://github.com/ThinkThread/avrasya/issues"
},
"homepage": "https://avrasya.fly.dev",
"contributors": [
{
"name": "Muhtalip Dede",
"github": "https://github.com/muhtalipdede",
"twitter": "https://twitter.com/MuhtalipDede"
},
{
"name": "Harun Sokullu",
"github": "https://github.com/suphero",
"twitter": "https://twitter.com/suphero"
}
]
}