-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.19 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
75
76
77
78
79
80
{
"name": "@stellarroute/route-visualizer",
"version": "0.1.0",
"description": "Embeddable React component to visualize Stellar DEX/AMM trade routes",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build && tsc --emitDeclarationOnly --declarationDir dist",
"build:storybook": "storybook build",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"size": "npx bundlesize"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.0",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.0.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.4.0"
},
"keywords": [
"stellar",
"dex",
"amm",
"route",
"visualizer",
"react",
"component"
],
"author": "StellarRoute",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StellarRoute/route-visualizer"
},
"bugs": {
"url": "https://github.com/StellarRoute/route-visualizer/issues"
},
"homepage": "https://github.com/StellarRoute/route-visualizer#readme"
}