-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 945 Bytes
/
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
{
"name": "@aryzing/superqs",
"version": "0.0.7",
"description": "Build and parse URL-safe query strings from arbitrary values",
"keywords": [
"query",
"string",
"url",
"url-safe",
"urlencoded",
"querystring",
"qs",
"query-string"
],
"homepage": "https://github.com/aryzing/superqs",
"bugs": {
"url": "https://github.com/aryzing/superqs/issues"
},
"license": "MIT",
"author": "Eduard Bardají Puig",
"repository": {
"type": "git",
"url": ""
},
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"test": "vitest",
"build": "vite build",
"publish": "npm publish --tag latest"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0",
"vite": "5.2.3",
"vite-plugin-dts": "3.7.3",
"vitest": "1.4.0"
},
"dependencies": {
"superjson": "2.2.1"
}
}