-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 962 Bytes
/
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
{
"name": "tinie",
"version": "0.0.1",
"description": "tinie: 🪄 Tiny framework that simply converts JavaScript functions into Restful APIs",
"main": "dist/tinie.js",
"files": [
"dist"
],
"types": "dist/tinie.d.ts",
"scripts": {
"build": "tsc",
"start:example": "node dist/example.js",
"dev": "tsc-watch --onSuccess \"npm run start:example\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/h4wldev/tinie.git"
},
"keywords": [
"tinie",
"rest",
"api",
"framework"
],
"author": "Junho Kim (h4wldev@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/h4wldev/tinie/issues"
},
"homepage": "https://github.com/h4wldev/tinie",
"devDependencies": {
"@types/node": "^18.11.10",
"tsc-watch": "^5.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"dependencies": {
"fastify": "^4.10.2",
"stringify-parameters": "^0.0.7"
}
}