chore: initial commit

This commit is contained in:
Cory Dransfeldt 2024-03-13 11:51:33 -07:00
commit 4ae1f3bdf4
No known key found for this signature in database
12 changed files with 3902 additions and 0 deletions

38
package.json Normal file
View file

@ -0,0 +1,38 @@
{
"name": "@cdransf/eleventy-plugin-tablericons",
"version": "1.0.0",
"description": "Shortcodes to add Tabler icons to your Eleventy projects",
"main": "tablericons.js",
"files": [
"tablericons.js",
"icons.js"
],
"scripts": {
"build": "node build.js",
"postversion": "git push && git push --tags"
},
"keywords": [
"eleventy-plugin",
"eleventy",
"plugin",
"tabler-icons"
],
"author": {
"email": "coryd@hey.com",
"name": "Cory Dransfeldt",
"url": "https://coryd.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdransf/eleventy-plugin-tabler-icons.git"
},
"homepage": "https://github.com/cdransf/eleventy-plugin-tabler-icons#readme",
"bugs": {
"url": "https://github.com/cdransf/eleventy-plugin-tabler-icons/issues"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@tabler/icons": "^3.0.1"
}
}