-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-typescript-flight-indicators",
"version": "1.0.4",
"description": "A React + TypeScript porting of react-flight-indicators (https://github.com/skyhop/react-flight-indicators)",
"author": "Starnuto di topo",
"license": "GPL-3.0",
"keywords": [
"memoization",
"react",
"typescript",
"flight",
"indicator",
"airplane",
"component",
"control",
"svg",
"svgr",
"heading",
"variometer",
"turn",
"coordinator",
"air",
"speed",
"altimeter",
"attitude"
],
"repository": {
"type": "git",
"url": "git+https://github.com/starnutoditopo/react-typescript-flight-indicators.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"private": false,
"engines": {
"node": ">=18"
},
"packageManager": "npm@9.5.1",
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"prepare": "npm run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"prettier": "prettier --write .",
"dev": "microbundle-crl watch --no-compress --format modern,cjs",
"codegen": "npx @svgr/cli svg/ --typescript --icon --out-dir src/components/generated"
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/node": "18.16.18",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-eslint": "^10.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5"
},
"files": [
"dist",
"README.md"
]
}