-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "@ugursahinkaya/secure-socket-server",
"type": "module",
"version": "0.1.0",
"license": "GPL-3.0 or Commerical",
"description": "",
"author": "Uğur Şahinkaya <ugur@sahinkaya.xyz>",
"contributors": [
"Uğur Şahinkaya <ugur@sahinkaya.xyz>",
"Yusuf Kandemir <yusuf.kandemir@outlook.com.tr>"
],
"homepage": "https://github.com/ugursahinkaya/secure-socket-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ugursahinkaya/secure-socket-server.git"
},
"bugs": "https://github.com/ugursahinkaya/secure-socket-server/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --fix",
"build": "rollup -c",
"dev": "tsx watch -r dotenv-expand/config src/index.ts",
"generate": "npx prisma generate",
"migrate": "npx prisma migrate"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/ws": "^8.5.10",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.15.7",
"typescript": "5.5.2"
},
"dependencies": {
"@ugursahinkaya/crypto-lib": "0.1.0",
"@ugursahinkaya/shared-types": "0.1.0",
"@ugursahinkaya/utils": "0.1.0",
"@ugursahinkaya/secure-auth": "0.1.0",
"fastify": "^4.28.1",
"fastify-plugin": "^4.5.1",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"ws": "^8.17.0"
}
}