-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "@podium/fastify-podlet",
"version": "4.0.1",
"type": "module",
"description": "Fastify plugin for Podium Podlet",
"main": "lib/podlet-plugin.js",
"types": "types/podlet-plugin.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:podium-lib/fastify-podlet.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"lib",
"types"
],
"scripts": {
"test": "tap --disable-coverage --allow-empty-coverage",
"test:coverage": "tap",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"types": "run-s types:tsc types:fixup types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json",
"types:fixup": "node ./fixup.js"
},
"author": "Trygve Lie",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"fastify",
"podium"
],
"dependencies": {
"@podium/utils": "5.4.0",
"fastify-plugin": "5.0.1"
},
"devDependencies": {
"@fastify/formbody": "8.0.1",
"@podium/eslint-config": "1.0.5",
"@podium/podlet": "5.2.4",
"@podium/semantic-release-config": "2.0.0",
"@podium/test-utils": "2.5.2",
"@podium/typescript-config": "1.0.0",
"eslint": "9.17.0",
"fastify": "5.2.0",
"npm-run-all2": "6.2.6",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"tap": "21.0.1",
"typescript": "5.7.2"
}
}