-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "@mpxjs/mpx-query",
"version": "0.0.1",
"description": "Hooks for managing, caching and syncing asynchronous and remote data in Mpx",
"repository": {
"type": "git"
},
"license": "MIT",
"author": "Mater",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"clean": "rimraf ./build && rimraf ./coverage",
"lint": "eslint ./src",
"release": "release-it",
"dev": "tsup --watch",
"test": "vitest",
"test:build": "publint --strict && attw --pack",
"test:lib:dev": "pnpm run test:lib --watch"
},
"dependencies": {
"@tanstack/match-sorter-utils": "^8.15.1",
"@tanstack/query-core": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@mpxjs/core": "^2.8.0",
"@release-it/conventional-changelog": "^3.3.0",
"@types/node": "^18.0.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@vitest/coverage-istanbul": "^1.1.0",
"@vitest/coverage-v8": "^1.1.0",
"abortcontroller-polyfill": "^1.7.5",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"jsdom": "^20.0.0",
"lint-staged": "^9.5.0",
"release-it": "^14.11.5",
"tsup": "^7.1.0",
"typescript": "^4.0.0",
"vitest": "^1.1.0"
},
"peerDependencies": {
"@mpxjs/core": "^2.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}