This repository was archived by the owner on Jan 5, 2025. It is now read-only.
forked from gaurishhs/elysia-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.39 KB
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
{
"name": "@systemfsoftware/elysia-ip",
"version": "1.1.1",
"type": "module",
"module": "./dist/esm/mod.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@systemfsoftware/source": "./src/mod.ts",
"types": "./dist/esm/mod.d.ts",
"default": "./dist/esm/mod.js"
}
}
},
"keywords": [
"elysia",
"typescript",
"ip"
],
"files": [
"dist"
],
"tshy": {
"dialects": [
"esm"
],
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/mod.ts"
},
"sourceDialects": [
"@systemfsoftware/source"
]
},
"scripts": {
"dev": "NODE_DEBUG=* bun run --hot example/basic.ts",
"prepare": "bun run build",
"clean": "rimraf dist .tshy .tshy-build",
"build": "bun run clean && tshy",
"format": "dprint fmt",
"format:check": "dprint check",
"lint": "eslint . --ext .ts"
},
"license": "MIT",
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.1.9",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"dprint": "^0.47.2",
"elysia": "^1.0.20",
"eslint": "^9.10.0",
"rimraf": "^6.0.1",
"tshy": "^3.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"elysia": ">= 1.0.9"
}
}