-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "mcp-hook",
"version": "__MCP_VERSIONING_ON_PUBLISH__",
"description": "React hooks to prevent multiple clicks",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"lint": "tsc -p tsconfig.check.json && eslint ./src && prettier ./src --check",
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/en-ken/mcp.git"
},
"keywords": [
"react",
"hooks",
"multiple",
"click"
],
"author": "en-ken",
"license": "MIT",
"bugs": {
"url": "https://github.com/en-ken/mcp/issues"
},
"homepage": "https://github.com/en-ken/mcp#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^29.3.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^16.11.0 || ^17.0.0 || ^18.0.0"
},
"prettier": {
"trailingComma": "none",
"singleQuote": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}