-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@vcms-io/solidis",
"version": "0.0.5",
"author": "Jay Lee <jay@vendit.co.kr>",
"description": "High-performance, SOLID-structured RESP client for Redis and other RESP-compatible servers",
"repository": {
"type": "git",
"url": "https://github.com/vcms-io/solidis.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"prepack": "npm run build",
"cleanup": "npm run --silent node:ts ./scripts/cleanup.ts",
"build": "npm run cleanup && tsc && npm run node:ts ./scripts/build.ts",
"lint": "concurrently --raw \"biome check --write\" \"tsc --noEmit\"",
"format": "biome format --write",
"node:ts": "node --import=./scripts/esm/register.js",
"web:dev": "cd ./website && npm run dev",
"web:build": "cd ./website && npm run build",
"web:start": "cd ./website && npm run start"
},
"types": "distributions/index.d.ts",
"main": "distributions/index.cjs",
"exports": {
".": {
"import": {
"types": "./distributions/index.d.ts",
"default": "./distributions/index.mjs"
},
"require": {
"types": "./distributions/index.d.ts",
"default": "./distributions/index.cjs"
}
},
"./featured": {
"import": {
"types": "./distributions/client/featured.d.ts",
"default": "./distributions/client/featured.mjs"
},
"require": {
"types": "./distributions/client/featured.d.ts",
"default": "./distributions/client/featured.cjs"
}
},
"./command": {
"import": {
"types": "./distributions/command/index.d.ts",
"default": "./distributions/command/index.mjs"
},
"require": {
"types": "./distributions/command/index.d.ts",
"default": "./distributions/command/index.cjs"
}
},
"./command/*": {
"import": {
"types": "./distributions/command/*.d.ts",
"default": "./distributions/command/*.mjs"
},
"require": {
"types": "./distributions/command/*.d.ts",
"default": "./distributions/command/*.cjs"
}
}
},
"files": [
"distributions/**/*.{d.ts,mjs,cjs}"
],
"devDependencies": {
"@biomejs/biome": "2.0.4",
"@types/node": "^22.15.32",
"chalk": "^5.4.1",
"concurrently": "^9.1.2",
"esbuild": "^0.25.5",
"typescript": "^5.8.3"
}
}