@mamrp/icons 1.0.20 → 1.0.21
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/dist/icons/common/index.d.mts +23 -0
- package/dist/icons/common/index.d.ts +23 -0
- package/dist/icons/common/index.js +132 -0
- package/dist/icons/common/index.js.map +1 -0
- package/dist/icons/common/index.mjs +76 -0
- package/dist/icons/common/index.mjs.map +1 -0
- package/dist/icons/index.d.mts +23 -0
- package/dist/icons/index.d.ts +23 -0
- package/dist/icons/index.js +293 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/icons/index.mjs +214 -0
- package/dist/icons/index.mjs.map +1 -0
- package/dist/icons/navigation/index.d.mts +18 -0
- package/dist/icons/navigation/index.d.ts +18 -0
- package/dist/icons/navigation/index.js +185 -0
- package/dist/icons/navigation/index.js.map +1 -0
- package/dist/icons/navigation/index.mjs +140 -0
- package/dist/icons/navigation/index.mjs.map +1 -0
- package/package.json +56 -55
package/package.json
CHANGED
|
@@ -1,55 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mamrp/icons",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A comprehensive suite of reusable icons.",
|
|
5
|
-
"main": "dist/icons/index.js",
|
|
6
|
-
"module": "dist/icons/index.mjs",
|
|
7
|
-
"types": "dist/icons/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"dist/styles/global.css"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
"./common": {
|
|
14
|
-
"import": "./dist/icons/common/index.mjs",
|
|
15
|
-
"require": "./dist/icons/common/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./navigation": {
|
|
18
|
-
"import": "./dist/icons/navigation/index.mjs",
|
|
19
|
-
"require": "./dist/icons/navigation/index.js"
|
|
20
|
-
},
|
|
21
|
-
".": {
|
|
22
|
-
"import": "./dist/icons/index.mjs",
|
|
23
|
-
"require": "./dist/icons/index.js"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"typesVersions": {
|
|
27
|
-
"*": {
|
|
28
|
-
"common": [
|
|
29
|
-
"dist/icons/common/index.d.ts"
|
|
30
|
-
],
|
|
31
|
-
"navigation": [
|
|
32
|
-
"dist/icons/navigation/index.d.ts"
|
|
33
|
-
]
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mamrp/icons",
|
|
3
|
+
"version": "1.0.21",
|
|
4
|
+
"description": "A comprehensive suite of reusable icons.",
|
|
5
|
+
"main": "dist/icons/index.js",
|
|
6
|
+
"module": "dist/icons/index.mjs",
|
|
7
|
+
"types": "dist/icons/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"dist/styles/global.css"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
"./common": {
|
|
14
|
+
"import": "./dist/icons/common/index.mjs",
|
|
15
|
+
"require": "./dist/icons/common/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./navigation": {
|
|
18
|
+
"import": "./dist/icons/navigation/index.mjs",
|
|
19
|
+
"require": "./dist/icons/navigation/index.js"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./dist/icons/index.mjs",
|
|
23
|
+
"require": "./dist/icons/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"*": {
|
|
28
|
+
"common": [
|
|
29
|
+
"dist/icons/common/index.d.ts"
|
|
30
|
+
],
|
|
31
|
+
"navigation": [
|
|
32
|
+
"dist/icons/navigation/index.d.ts"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"test": "your-test-script"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [],
|
|
42
|
+
"author": "Mamrp Frontend Team",
|
|
43
|
+
"license": "ISC",
|
|
44
|
+
"packageManager": "pnpm@10.4.1",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"react-icons": "^5.5.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"eslint": "^9.21.0",
|
|
50
|
+
"eslint-config-prettier": "^10.0.2",
|
|
51
|
+
"eslint-plugin-react": "^7.37.4",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"tsup": "^8.4.0",
|
|
54
|
+
"typescript": "^5.8.2"
|
|
55
|
+
}
|
|
56
|
+
}
|