@developershre/icona 1.0.6
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/LICENSE +56 -0
- package/README.md +261 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +106 -0
- package/dist/index.js.map +1 -0
- package/dist/react/feather/heart.tsx +44 -0
- package/dist/react/feather/star.tsx +44 -0
- package/dist/react/maker.d.ts +5 -0
- package/dist/react/maker.d.ts.map +1 -0
- package/dist/react/maker.js +57 -0
- package/dist/react/maker.js.map +1 -0
- package/dist/react/tabler/outline/home.tsx +45 -0
- package/dist/react/tabler/outline/search.tsx +45 -0
- package/dist/react/tabler/outline/user.tsx +45 -0
- package/dist/react-native/feather/heart.tsx +35 -0
- package/dist/react-native/feather/star.tsx +35 -0
- package/dist/react-native/maker.d.ts +5 -0
- package/dist/react-native/maker.d.ts.map +1 -0
- package/dist/react-native/maker.js +48 -0
- package/dist/react-native/maker.js.map +1 -0
- package/dist/react-native/tabler/outline/home.tsx +36 -0
- package/dist/react-native/tabler/outline/search.tsx +36 -0
- package/dist/react-native/tabler/outline/user.tsx +36 -0
- package/dist/utils/pascal.d.ts +8 -0
- package/dist/utils/pascal.d.ts.map +1 -0
- package/dist/utils/pascal.js +22 -0
- package/dist/utils/pascal.js.map +1 -0
- package/dist/vue/feather/heart.vue +43 -0
- package/dist/vue/feather/star.vue +43 -0
- package/dist/vue/maker.d.ts +5 -0
- package/dist/vue/maker.d.ts.map +1 -0
- package/dist/vue/maker.js +56 -0
- package/dist/vue/maker.js.map +1 -0
- package/dist/vue/tabler/outline/home.vue +44 -0
- package/dist/vue/tabler/outline/search.vue +44 -0
- package/dist/vue/tabler/outline/user.vue +44 -0
- package/icons/feather/heart.svg +3 -0
- package/icons/feather/star.svg +3 -0
- package/icons/tabler/outline/home.svg +4 -0
- package/icons/tabler/outline/search.svg +4 -0
- package/icons/tabler/outline/user.svg +4 -0
- package/package.json +63 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
2
|
+
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/>
|
|
3
|
+
<polyline points="9,22 9,12 15,12 15,22"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
2
|
+
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/>
|
|
3
|
+
<circle cx="12" cy="7" r="4"/>
|
|
4
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@developershre/icona",
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "A TypeScript icon library generator for React, React Native, and Vue with nested folder support",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/develop-programs/icona.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/develop-programs/icona#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/develop-programs/icona/issues"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"dev": "tsc --watch",
|
|
18
|
+
"clean": "rm -rf dist",
|
|
19
|
+
"prepublishOnly": "npm run clean && npm run build && npm run generate",
|
|
20
|
+
"generate": "node dist/index.js",
|
|
21
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
22
|
+
"publish:patch": "npm version patch && npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN && npm publish --access public && git push origin main --tags",
|
|
23
|
+
"publish:minor": "npm version minor && npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN && npm publish --access public && git push origin main --tags",
|
|
24
|
+
"publish:major": "npm version major && npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN && npm publish --access public && git push origin main --tags",
|
|
25
|
+
"release:patch": "npm run clean && npm run build && npm run generate && npm run publish:patch",
|
|
26
|
+
"release:minor": "npm run clean && npm run build && npm run generate && npm run publish:minor",
|
|
27
|
+
"release:major": "npm run clean && npm run build && npm run generate && npm run publish:major"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist/",
|
|
31
|
+
"icons/",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"keywords": [
|
|
36
|
+
"icons",
|
|
37
|
+
"typescript",
|
|
38
|
+
"library",
|
|
39
|
+
"react",
|
|
40
|
+
"react-native",
|
|
41
|
+
"vue",
|
|
42
|
+
"svg",
|
|
43
|
+
"components",
|
|
44
|
+
"generator",
|
|
45
|
+
"figma",
|
|
46
|
+
"tabler",
|
|
47
|
+
"feather"
|
|
48
|
+
],
|
|
49
|
+
"author": {
|
|
50
|
+
"name": "develop-programs",
|
|
51
|
+
"url": "https://github.com/develop-programs"
|
|
52
|
+
},
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"type": "commonjs",
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=16.0.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "^25.2.2",
|
|
60
|
+
"@types/react": "^19.2.13",
|
|
61
|
+
"typescript": "^5.9.3"
|
|
62
|
+
}
|
|
63
|
+
}
|