-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 814 Bytes
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
{
"devDependencies": {
"@types/lodash": "^4.17.13",
"@vitest/coverage-v8": "^3.2.4",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"lodash": "^4.17.21"
},
"files": [
"dist"
],
"license": "MIT",
"main": "dist/index.js",
"name": "use-qs",
"repository": {
"type": "git",
"url": "https://github.com/feliperohdee/use-qs"
},
"scripts": {
"build": "rm -rf dist && yarn lint && tsc -p tsconfig.json",
"lint": "prettier --write . && tsc -p tsconfig.json",
"npm:publish": "yarn test && yarn build && yarn version --patch --no-git-tag-version && yarn publish --non-interactive",
"test": "vitest --run",
"test:coverage": "rm -rf coverage && vitest --run --coverage",
"test:watch": "vitest"
},
"version": "1.0.5"
}