-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@cmmv/fastify",
"version": "0.6.5",
"description": "HTTP adapter module for using Fastify as an HTTP server",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "pnpm run build:cjs && pnpm run build:esm",
"test": "vitest",
"prepare": "husky",
"release": "pnpm run build && node release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [
"cmmv",
"fastify",
"adapter",
"http"
],
"author": "Andre Ferreira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cmmvio/cmmv-fastify.git"
},
"bugs": {
"url": "https://github.com/cmmvio/cmmv-fastify/issues"
},
"homepage": "https://cmmv.io",
"engines": {
"node": ">= 18.2.0"
},
"lint-staged": {
"**/*.ts": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"devDependencies": {
"@commitlint/config-angular": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"chalk": "^5.3.0",
"commitlint": "19.6.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
"execa": "^9.5.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@cmmv/core": "^0.6.6",
"@cmmv/http": "^0.6.6",
"@cmmv/view": "^0.6.6",
"@fastify/compress": "^8.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^13.0.0",
"@fastify/secure-session": "^8.1.0",
"@fastify/static": "^8.0.3",
"@fastify/view": "^10.0.1",
"fastify": "^5.1.0",
"uuid": "^11.0.3"
}
}