-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "@noriginmedia/norigin-spatial-navigation-core",
"version": "4.0.0",
"description": "Core spatial navigation logic for web and TV.",
"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",
"test": "jest --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoriginMedia/norigin-spatial-navigation.git"
},
"keywords": [
"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/",
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"rollup": "^4.28.1",
"ts-jest": "^29.1.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}