-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ardrive-widget-react",
"private": false,
"version": "0.1.13",
"type": "module",
"main": "./ArdriveWidget.js",
"exports": {
".": {
"import": "./ArdriveWidget.js",
"require": "./ArdriveWidget.cjs"
},
"./useArdriveEvents": {
"import": "./useArdriveEvents.js",
"require": "./useArdriveEvents.cjs"
}
},
"scripts": {
"build": "npm run clean && tsc && vite build && copyfiles ./package.json dist",
"clean": "rimraf dist",
"format": "prettier --write .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint .",
"test": "NODE_ENV=test jest",
"publish:npm": "npm run build && copyfiles ./package.json dist && cd dist && npm publish --access public && cd .."
},
"dependencies": {
"@atticusofsparta/arfs-lite-client": "^1.1.3",
"@babel/parser": "^7.22.11",
"@cyntler/react-doc-viewer": "^1.13.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-tooltip": "^1.0.6",
"@rollup/plugin-inject": "^5.0.3",
"@typescript-eslint/parser": "^5.0.0",
"arweave": "1.13.7",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1",
"events": "^3.3.0",
"gh-pages": "^5.0.0",
"prettier": "^3.0.3",
"process": "^0.11.10",
"rc-pagination": "^3.5.0",
"rc-table": "^7.32.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"react-player": "^2.12.0",
"react-syntax-highlighter": "^15.5.0",
"react-syntax-highlighter-virtualized-renderer": "^1.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"util": "^0.12.5",
"vite-plugin-dts": "^3.5.3",
"vite-plugin-node-polyfills": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/eslint": "^8.4.10",
"@types/lodash": "^4.14.188",
"@types/prettier": "^3.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@vitejs/plugin-react": "^2.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jest-transform-stub": "^2.0.0",
"microbundle": "^0.15.1",
"rimraf": "^3.0.2",
"rollup-plugin-polyfill-node": "^0.11.0",
"typescript": "^4.6.4",
"vite": "^3.2.5",
"vite-plugin-svgr": "^2.2.2"
}
}