-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "@t3ned/channel",
"version": "1.4.2-beta",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "T3NED <[email protected]>",
"license": "Apache-2.0",
"description": "Ergonomic, chaining-based Typescript framework for quick API development for Fastify",
"repository": {
"type": "git",
"url": "[email protected]:T3NED/channel.git"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"keywords": [
"ergonomic",
"framework",
"api",
"rest",
"minimal",
"fastify"
],
"scripts": {
"format": "npx prettier --write src",
"build": "npx tsc -b .",
"watch:build": "npx tsc -w",
"lint": "npx eslint src --fix",
"test": "npx vitest run --coverage",
"watch:test": "npx vitest --coverage"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"fastify": "^4.3.0",
"zod": "^3.17.10"
},
"devDependencies": {
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"c8": "^7.11.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vitest": "^0.18.1"
}
}