-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 970 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 970 Bytes
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
{
"name": "@ghini/kit",
"version": "26.1.3175450",
"scripts": {
"build": "node ./build.js && tsc",
"pub": "npm run build && npm publish && git add . && git commit -m 'update' && git push",
"update": "npm cache clean --force&&npm update"
},
"exports": {
".": {
"import": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./dev": {
"import": "./dev/main.js"
}
},
"description": "js practical tools to assist efficient development",
"main": "main.js",
"type": "module",
"keywords": [
"kit",
"server",
"request",
"db",
"redis",
"io"
],
"author": "Ghini",
"license": "MIT",
"dependencies": {
"acorn": "8.14.0",
"global-agent": "^3.0.0",
"ioredis": "5.4.2",
"pg": "8.13.1",
"sharp": "0.32.6",
"socks-proxy-agent": "^8.0.5",
"ws": "^8.18.1",
"yaml": "2.7.0"
},
"devDependencies": {
"@types/node": "22.13.1",
"typescript": "5.7.3"
}
}