-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vue-qs",
"version": "0.1.18",
"description": "Type‑safe, reactive URL query parameters for Vue 3 with full TypeScript support",
"license": "MIT",
"author": {
"name": "Somraj Mukherjee",
"email": "iamsomraj@gmail.com",
"url": "https://github.com/iamsomraj"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"composition-api",
"querystring",
"url",
"router",
"state",
"nuqs",
"url-params",
"url-state",
"queryRef",
"queryReactive",
"typescript",
"ssr",
"reactive"
],
"packageManager": "bun@1.2.19",
"repository": {
"type": "git",
"url": "git+https://github.com/iamsomraj/vue-qs.git",
"directory": "."
},
"bugs": {
"url": "https://github.com/iamsomraj/vue-qs/issues"
},
"homepage": "https://iamsomraj.github.io/vue-qs/",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .ts,.tsx,.cts,.mts --fix",
"format": "prettier --check \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
"prepare": "echo 'no git hooks'",
"prepublishOnly": "bun run typecheck && bun run lint && bun run test && bun run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:api": "typedoc && cp docs/api/README.md docs/api/index.md",
"docs:all": "bun run docs:api && bun run docs:build",
"docs:deploy": "DOCS_BASE=/vue-qs/ bun run docs:all && DOCS_BASE=/vue-qs/ vitepress build docs && gh-pages -d docs/.vitepress/dist -b gh-pages --dotfiles"
},
"peerDependencies": {
"vue": "^3.3.0",
"vue-router": "^4.2.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.12.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"gh-pages": "^6.1.1",
"globals": "^16.3.0",
"happy-dom": "^18.0.1",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typedoc": "^0.28.10",
"typedoc-plugin-markdown": "^4.8.0",
"typescript": "^5.9.2",
"vitepress": "^1.5.0",
"vitest": "^2.1.2",
"vue": "^3.5.10",
"vue-router": "^4.4.5"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/iamsomraj"
}
}