-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.45 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
{
"name": "words",
"version": "0.3.0",
"description": "A collection of React hooks for toggles with dynamic noun and verb APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build",
"test": "jest --config jest.config.ts"
},
"keywords": [
"react",
"react-hooks",
"hooks",
"state-management",
"ui-state",
"dynamic-state",
"toggle",
"optimistic-updates",
"proxy",
"verbs",
"nouns",
"readable-code",
"human-readable",
"semantic",
"show-hide",
"open-close",
"check-uncheck",
"words",
"use-toggles",
"use-toggle",
"toggles",
"react-toggles",
"toggle-hook",
"react-toggle-hook"
],
"author": "Alex Cory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ava/words.git"
},
"bugs": {
"url": "https://github.com/ava/words/issues"
},
"homepage": "https://alexcory.notion.site/words",
"peerDependencies": {
"react": ">=16.9.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^27.0.0",
"@types/react": "^16.9.0",
"jest": "^28.0.0",
"jest-environment-jsdom": "^29.7.0",
"react-dom": "^19.0.0",
"ts-jest": "^28.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.0.0"
},
"files": [
"dist"
]
}