-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 949 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": "fastest-qs",
"version": "1.0.4",
"license": "MIT",
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-ecosystem/fastest-qs.git"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "pkgroll",
"prepublishOnly": "yarn build",
"od": "yarn outdated"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@yarnpkg/sdks": "^3.2.0",
"eslint": "^9.17.0",
"eslint-plugin-unicorn": "^56.0.1",
"pkgroll": "^2.6.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"keywords": [
"fast",
"fast-querystring",
"http",
"node-js",
"parser",
"qs",
"query",
"querystring",
"string"
],
"packageManager": "[email protected]"
}