-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 KB
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
{
"name": "@noriginmedia/norigin-spatial-navigation-react",
"version": "3.2.0",
"description": "React hooks based Spatial Navigation solution",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"eslint": "eslint src",
"build": "rimraf dist && rollup -c && tsc --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoriginMedia/norigin-spatial-navigation.git"
},
"keywords": [
"react",
"react-hooks",
"spatial-navigation",
"remote-control-navigation",
"tv-navigation"
],
"author": "Norigin Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoriginMedia/norigin-spatial-navigation/issues"
},
"homepage": "https://devportal.noriginmedia.com/docs/Norigin-Spatial-Navigation/",
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"lodash-es": "^4.17.21",
"@noriginmedia/norigin-spatial-navigation-core": "^3.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.24",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.28.1",
"styled-components": "^5.3.3",
"typescript": "^5.9.3"
}
}