-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "@please/lrud",
"version": "1.0.0",
"description": "A React library for managing focus in TV apps.",
"main": "dist/index.js",
"module": "dist/lrud.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepublishOnly": "npm run build",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"prettier": "prettier --config ./.prettierrc --write **/*.{js,css}",
"publish-beta": "npm publish --tag=beta"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jamesplease/lrud.git"
},
"keywords": [
"lrud",
"tv",
"react",
"component",
"navigation",
"focus",
"remote"
],
"author": "James Please",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesplease/lrud/issues"
},
"homepage": "https://github.com/jamesplease/lrud#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^5.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
}
}