-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@posit/shiny-react",
"version": "0.0.16",
"description": "React bindings for Shiny applications (R and Python)",
"author": "Winston Chang",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/wch/shiny-react.git"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"clean": "rm -rf dist/"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.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"
}
}