forked from Sorokit/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.82 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
{
"name": "sorokit-ui",
"version": "1.0.0",
"type": "module",
"description": "React components for Stellar/Soroban development",
"main": "dist/sorokit-ui.cjs.js",
"module": "dist/sorokit-ui.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/sorokit-ui.es.js",
"require": "./dist/sorokit-ui.cjs.js",
"types": "./dist/index.d.ts"
},
"./styles": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json",
"build:app": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"test:exports": "tsc --noEmit -p tsconfig.test-exports.json",
"size": "size-limit"
},
"size-limit": [
{
"name": "ES module (gzip)",
"path": "dist/sorokit-ui.es.js",
"limit": "50 KB",
"gzip": true
},
{
"name": "CommonJS (gzip)",
"path": "dist/sorokit-ui.cjs.js",
"limit": "50 KB",
"gzip": true
}
],
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^0.0.0-beta.0",
"@stellar/stellar-sdk": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sorokit-core": "^0.1.0"
},
"peerDependencies": {
"tailwindcss": "^3.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"devDependencies": {
"@size-limit/file": "^11.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"size-limit": "^11.2.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
}
}