-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tagliatelle",
"version": "1.0.1",
"description": "🍝 The Declarative Backend Framework - JSX-powered API architecture on Fastify",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tagliatelle": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"example": "tsx --tsconfig tsconfig.examples.json examples/server.tsx",
"example:dev": "tsx watch --tsconfig tsconfig.examples.json examples/server.tsx"
},
"keywords": [
"fastify",
"jsx",
"tsx",
"declarative",
"backend",
"framework",
"api",
"rest",
"typescript",
"file-based-routing",
"cli"
],
"author": "Malek Abdelkader",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/malekabdelkader/Tagliatelle.js.git"
},
"homepage": "https://github.com/malekabdelkader/Tagliatelle.js#readme",
"bugs": {
"url": "https://github.com/malekabdelkader/Tagliatelle.js/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@fastify/cors": "^8.4.0",
"fastify": "^4.24.0"
},
"devDependencies": {
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.2.0",
"@fastify/websocket": "^8.3.1",
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}