-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@oeklo/nettletea",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node build.js",
"postbuild": "tsc --emitDeclarationOnly -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@fastify/swagger": "^9.3.0",
"@slack/types": "^2.14.0",
"@types/node": "^22.9.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"fastify-cli": "^7.0.1",
"globals": "^15.12.0",
"i18next": "^23.16.5",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"type": "module",
"dependencies": {
"fastify": "^5.1.0"
},
"peerDependencies": {
"@fastify/swagger": "^9.2.0",
"@fastify/type-provider-typebox": "^5.0.0",
"@sinclair/typebox": "^0.33.12",
"@slack/web-api": "^7.4.0",
"i18next": "^23.16.4"
},
"license": "Apache-2.0",
"author": {
"name": "Rafal Krupinski"
},
"sideEffects": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}