-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "use-searchable-list",
"version": "1.0.0",
"description": "A hook to filter an array/list of objects.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jacoobia/useSearchableList.git"
},
"bugs": {
"url": "https://github.com/jacoobia/useSearchableList/issues"
},
"homepage": "https://github.com/jacoobia/useSearchableList#readme",
"scripts": {
"test": "jest",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"quality": "prettier --write ./src/ && eslint . --fix --ext .ts",
"clean": "eslint . --fix --ext .ts",
"lint": "tsc"
},
"keywords": [
"Array",
"Filter",
"React",
"Hook"
],
"author": "(Jacoobia) Anthony Jacob Hampton",
"license": "MIT",
"dependencies": {
"@jest/types": "^29.6.3",
"react": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.0.4"
}
}