-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "create-shiny-react-app",
"version": "0.0.10",
"type": "module",
"description": "CLI tool to create new shiny-react applications",
"author": "Winston Chang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wch/create-shiny-react-app.git"
},
"bin": {
"create-shiny-react-app": "./bin/create-shiny-react-app.js"
},
"files": [
"bin/",
"templates/"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@posit/shiny": "^1.11.1",
"@types/node": "^24.3.0",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"keywords": [
"shiny",
"react",
"r",
"python",
"cli",
"template",
"generator"
]
}