-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "use-text-analyzer",
"version": "2.1.6",
"description": "A React hook for analyzing text.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"esmodule": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.module.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"build": "rm -rf ./dist/*; microbundle build --entry src/index.ts --name use-text-analyzer --tsconfig tsconfig.json",
"test": "jest",
"prepare": "husky"
},
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Invulner/use-text-analyzer.git"
},
"keywords": [
"react",
"hook",
"react-hook",
"javascript",
"typescript",
"text",
"analyzer",
"text-analysis",
"word-frequency",
"wordcount",
"reading",
"time",
"reading-time"
],
"author": "invulner <invulner91@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/Invulner/use-text-analyzer/issues"
},
"homepage": "https://github.com/Invulner/use-text-analyzer#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.7",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}