@iccandle/news 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +340 -0
- package/dist/news-widget.cjs +12 -0
- package/dist/news-widget.d.ts +13251 -0
- package/dist/news-widget.js +7915 -0
- package/package.json +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iccandle/news",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "ICCandle",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/iccandle/widget-news",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/iccandle/widget-news.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/iccandle/widget-news/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"tradingview",
|
|
17
|
+
"iccandle",
|
|
18
|
+
"widget",
|
|
19
|
+
"news"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "vite build && tsc -p tsconfig.lib.json && npx rollup -c rollup.dts.config.mjs && node scripts/clean-dts-temp.mjs",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"preview": "vite preview"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"main": "./dist/news-widget.cjs",
|
|
32
|
+
"module": "./dist/news-widget.js",
|
|
33
|
+
"types": "./dist/news-widget.d.ts",
|
|
34
|
+
"sideEffects": [
|
|
35
|
+
"**/*.css"
|
|
36
|
+
],
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"types": "./dist/news-widget.d.ts",
|
|
40
|
+
"import": "./dist/news-widget.js",
|
|
41
|
+
"require": "./dist/news-widget.cjs"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": ">=18",
|
|
46
|
+
"react-dom": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@eslint/js": "^9.39.1",
|
|
50
|
+
"@fontsource/inter-tight": "^5.2.7",
|
|
51
|
+
"@hookform/resolvers": "^5.2.2",
|
|
52
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
53
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
54
|
+
"@tailwindcss/cli": "^4.2.1",
|
|
55
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
56
|
+
"@tanstack/eslint-plugin-query": "^5.91.4",
|
|
57
|
+
"@tanstack/react-query": "^5.90.21",
|
|
58
|
+
"@tanstack/react-query-devtools": "^5.91.3",
|
|
59
|
+
"@types/node": "^24.10.1",
|
|
60
|
+
"@types/react": "^19.2.7",
|
|
61
|
+
"@types/react-dom": "^19.2.3",
|
|
62
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
63
|
+
"axios": "^1.13.5",
|
|
64
|
+
"class-variance-authority": "^0.7.1",
|
|
65
|
+
"clsx": "^2.1.1",
|
|
66
|
+
"cmdk": "^1.1.1",
|
|
67
|
+
"eslint": "^9.39.1",
|
|
68
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
69
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
70
|
+
"globals": "^16.5.0",
|
|
71
|
+
"lightweight-charts": "^5.1.0",
|
|
72
|
+
"lottie-react": "^2.4.1",
|
|
73
|
+
"lucide-react": "^0.575.0",
|
|
74
|
+
"next-themes": "^0.4.6",
|
|
75
|
+
"radix-ui": "^1.4.3",
|
|
76
|
+
"react": "^19.2.0",
|
|
77
|
+
"react-colorful": "^5.6.1",
|
|
78
|
+
"react-dom": "^19.2.0",
|
|
79
|
+
"react-draggable": "^4.5.0",
|
|
80
|
+
"react-hook-form": "^7.71.2",
|
|
81
|
+
"react-resizable-panels": "^4",
|
|
82
|
+
"rollup": "^4.57.1",
|
|
83
|
+
"rollup-plugin-dts": "^6.4.0",
|
|
84
|
+
"shadcn": "^3.8.5",
|
|
85
|
+
"sonner": "^2.0.7",
|
|
86
|
+
"tailwind-merge": "^3.5.0",
|
|
87
|
+
"tailwindcss": "^4.1.18",
|
|
88
|
+
"tw-animate-css": "^1.4.0",
|
|
89
|
+
"typescript": "~5.9.3",
|
|
90
|
+
"typescript-eslint": "^8.48.0",
|
|
91
|
+
"vite": "^7.3.1",
|
|
92
|
+
"vite-plugin-css-injected-by-js": "^4.0.1",
|
|
93
|
+
"zod": "^4.3.6",
|
|
94
|
+
"zustand": "^5.0.11"
|
|
95
|
+
},
|
|
96
|
+
"dependencies": {
|
|
97
|
+
"date-fns": "^4.1.0"
|
|
98
|
+
}
|
|
99
|
+
}
|