forked from vydimitrov/use-elapsed-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "use-elapsed-time-xr",
"version": "3.0.11",
"description": "React hook to measure elapsed time using XRSession requestAnimationFrame",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"author": "Cyango",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "node scripts/serve.js",
"ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib",
"build": "npm run ts-declaration && node scripts/build.js",
"test": "jest --collectCoverage --coverageDirectory=\"coverage\"",
"test-watch": "jest --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyango/use-elapsed-time-xr.git"
},
"keywords": [
"react",
"hook",
"requestAnimationFrame",
"animation",
"loop",
"elapsed",
"time",
"xr"
],
"bugs": {
"url": "https://github.com/cyango/use-elapsed-time-xr/issues"
},
"homepage": "https://github.com/cyango/use-elapsed-time-xr#readme",
"peerDependencies": {
"react": ">=16.8.0",
"@coconut-xr/natuerlich": "^0.0.43"
},
"devDependencies": {
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "26.0.24",
"esbuild": "0.12.24",
"jest": "27.1.0",
"prettier": "2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "27.0.5",
"typescript": "5.2.2"
},
"dependencies": {}
}