-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "@bluxcc/react",
"author": "Blux team",
"version": "0.2.2",
"homepage": "https://blux.cc",
"description": "Connecting to the Stellar Ecosystem and Beyond",
"repository": {
"type": "git",
"url": "git+https://github.com/bluxcc/blux"
},
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c rollup.config.dev.js --watch",
"build": "rollup -c rollup.config.prod.js"
},
"peerDependencies": {
"@bluxcc/core": "^0.2.2",
"@stellar/stellar-sdk": "^14.5.0",
"@tanstack/react-query": "^5.90.11",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tailwindcss/postcss": "^4.1.6",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"rollup": "^4.29.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^4.1.6",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"optionalDependencies": {
"@rollup/rollup-darwin-x64": "4.30.1",
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"sideEffects": [
"*.css"
]
}