@aurum-sdk/logos 0.1.0
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 +74 -0
- package/dist/index.d.mts +92 -0
- package/dist/index.d.ts +92 -0
- package/dist/index.js +232 -0
- package/dist/index.mjs +223 -0
- package/dist/react/index.d.mts +153 -0
- package/dist/react/index.d.ts +153 -0
- package/dist/react/index.js +2023 -0
- package/dist/react/index.mjs +1983 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aurum-sdk/logos",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Wallet logos for Aurum SDK",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=18.0.0",
|
|
8
|
+
"pnpm": ">=8.0.0"
|
|
9
|
+
},
|
|
10
|
+
"packageManager": "pnpm@8.15.0",
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"module": "./dist/index.mjs",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.mjs",
|
|
18
|
+
"require": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./react": {
|
|
21
|
+
"types": "./dist/react/index.d.ts",
|
|
22
|
+
"import": "./dist/react/index.mjs",
|
|
23
|
+
"require": "./dist/react/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./react/*": {
|
|
26
|
+
"types": "./dist/react/*.d.ts",
|
|
27
|
+
"import": "./dist/react/*.mjs",
|
|
28
|
+
"require": "./dist/react/*.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"generate:icons": "svgr --config-file svgr.config.js --out-dir src/react/icons src/assets",
|
|
37
|
+
"prebuild": "pnpm generate:icons",
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"clean": "rm -rf dist src/react/icons/*.tsx",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest",
|
|
42
|
+
"test:coverage": "vitest run --coverage",
|
|
43
|
+
"prepublishOnly": "pnpm build"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependenciesMeta": {
|
|
49
|
+
"react": {
|
|
50
|
+
"optional": true
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@aurum-sdk/types": "workspace:^"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@svgr/cli": "^8.1.0",
|
|
58
|
+
"@types/react": "^18.0.0",
|
|
59
|
+
"tsup": "^8.0.0",
|
|
60
|
+
"typescript": "^5.0.0",
|
|
61
|
+
"vitest": "^2.1.0",
|
|
62
|
+
"@vitest/coverage-v8": "^2.1.0"
|
|
63
|
+
},
|
|
64
|
+
"keywords": [
|
|
65
|
+
"wallet",
|
|
66
|
+
"logos",
|
|
67
|
+
"svg",
|
|
68
|
+
"react",
|
|
69
|
+
"aurum"
|
|
70
|
+
],
|
|
71
|
+
"author": "Hunter Cote",
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"repository": {
|
|
74
|
+
"type": "git",
|
|
75
|
+
"url": "https://github.com/aurum-sdk/aurum.git",
|
|
76
|
+
"directory": "packages/logos"
|
|
77
|
+
},
|
|
78
|
+
"homepage": "https://github.com/aurum-sdk/aurum#readme"
|
|
79
|
+
}
|