-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "@podium/podlet",
"version": "5.2.4",
"type": "module",
"description": "Module for building page fragment servers in a micro frontend architecture.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/podium-lib/podlet"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"dist",
"lib",
"types"
],
"main": "./lib/podlet.js",
"types": "./types/podlet.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage",
"types": "run-s types:tsc types:fixup types:test",
"types:tsc": "tsc --declaration --emitDeclarationOnly",
"types:test": "tsc --project tsconfig.test.json",
"types:fixup": "node ./fixup.js"
},
"dependencies": {
"@metrics/client": "2.5.4",
"@podium/schemas": "5.1.0",
"@podium/proxy": "5.0.32",
"@podium/utils": "5.4.0",
"abslog": "2.4.4",
"ajv": "8.17.1",
"objobj": "1.0.0"
},
"devDependencies": {
"@podium/eslint-config": "1.0.3",
"@podium/semantic-release-config": "2.0.0",
"@podium/test-utils": "3.0.15",
"@podium/typescript-config": "1.0.0",
"@types/node": "20.16.10",
"@types/readable-stream": "4.0.18",
"eslint": "9.16.0",
"express": "4.20.0",
"json-stringify-safe": "5.0.1",
"npm-run-all2": "6.2.6",
"prettier": "3.4.1",
"semantic-release": "24.1.2",
"tap": "18.8.0",
"typescript": "5.5.4",
"undici": "^6.19.7"
}
}