-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "use-haptic",
"version": "1.0.2",
"description": "Hooks for Haptic Feedback for mobile web",
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format .",
"build": "tsc",
"test": "jest --verbose --no-cache --config jest.config.ts",
"ci": "npm run lint && npm run test",
"prepublishOnly": "npm run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["/src", "/dist", "/README.md", "/LICENSE"],
"license": "MIT",
"keywords": ["react-hooks", "react", "haptic", "vibration"],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/posaune0423/use-haptic.git"
},
"author": "Asuma Yamada(@posaune0423)",
"bugs": {
"url": "https://github.com/posaune0423/use-haptic/issues"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}