-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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": "qfilters",
"version": "1.0.0",
"description": "Handle filters with ease in query params",
"main": "./lib/index.js",
"type": "module",
"author": {
"name": "LeOndaz",
"email": "ahmeddark369@gmail.com"
},
"contributors": [],
"license": "MIT",
"files": [
"lib",
"index.d.ts"
],
"typings": "./index.d.ts",
"scripts": {
"build": "tsc && resolve-tspaths",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "vitest",
"format": "prettier --write .",
"prepare": "husky"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@tsconfig/node16": "^16.1.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"resolve-tspaths": "^0.8.19",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
}
}