-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "dicedb.js",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsc --watch",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc --incremental false",
"test": "vitest run"
},
"keywords": [],
"author": {
"name": "Kishan Sharma",
"email": "kisshan07@outlook.com",
"url": "https://github.com/kisshan13"
},
"license": "ISC",
"type": "module",
"dependencies": {
"google-protobuf": "^3.21.4"
},
"devDependencies": {
"@bufbuild/protobuf": "^2.2.3",
"@types/google-protobuf": "^3.15.12",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"ts-protoc-gen": "^0.15.0",
"typescript": "^5.7.3",
"vitest": "^3.0.9"
}
}