-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.51 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
{
"name": "queryzz",
"type": "module",
"version": "3.1.5",
"packageManager": "pnpm@9.12.1",
"description": "queryzz - a lightweight JS library for manipulating URL query parameters. Get, set, and format queries easily.",
"author": "Valerii Strilets",
"license": "MIT",
"homepage": "https://github.com/letstri/queryzz#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/letstri/queryzz.git"
},
"bugs": {
"url": "https://github.com/letstri/queryzz/issues"
},
"keywords": [
"queryzz",
"query",
"set",
"get",
"format",
"getQuery",
"formatQuery",
"setQuery",
"typescript",
"react",
"vue",
"useQuery"
],
"exports": {
".": {
"types": "./dist/native/index.d.ts",
"import": "./dist/native/index.mjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "unbuild",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "vitest run"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@types/react": "^18.3.11",
"eslint": "^9.12.0",
"happy-dom": "^15.7.4",
"react": "^18.3.1",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.8",
"vue": "^3.5.12"
}
}