feather-icons-paths
Version:
Feather icons exported as paths
86 lines (85 loc) • 2.74 kB
JSON
{
"name": "feather-icons-paths",
"version": "1.1.1",
"description": "Feather icons exported as paths",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/src/index.d.ts",
"typings": "dist/types/src/index.d.ts",
"repository": "https://github.com/codebender828/feather-icons-paths",
"author": "codebender828 <codebender828@gmail.com>",
"sideEffects": false,
"license": "MIT",
"private": false,
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "concurrently yarn:build:*",
"dev": "concurrently yarn:dev:*",
"dev:build": "cross-env BABEL_ENV=esm babel src -d dist/esm --source-maps --watch",
"dev:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch",
"dev:playground": "cross-env vite serve playground --config ./vite.config.js",
"build:esm": "cross-env BABEL_ENV=esm babel src -d dist/esm --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src -d dist/cjs --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"playground": "vite serve playground --config ./vite.config.js",
"playground:deploy": "yarn build && yarn postinstall && vite build playground --config ./vite.config.js"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@vue/compiler-sfc": "^3.1.4",
"change-case": "^4.1.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"defu": "^3.2.2",
"element-to-path": "^1.2.0",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.1.0",
"feather-icons": "^4.28.0",
"html-parse-stringify": "^2.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"path-that-svg": "^1.2.4",
"prettier": "^2.3.2",
"prismjs": "^1.22.0",
"sass": "^1.29.0",
"typescript": "^4.1.2",
"vite": "^2.4.2",
"vue": "^3.1.4",
"vue-prism-editor": "^1.2.2"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [
"icons",
"feather-icons",
"feather",
"path",
"svg",
"chakra-ui"
],
"dependencies": {
"@vitejs/plugin-vue": "^1.2.5"
}
}