via-icons/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "via-icons",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"require": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"./outline": {
"require": {
"import": "./dist/icons/outline/index.js",
"types": "./dist/icons/outline/index.d.ts"
},
"import": {
"import": "./dist/icons/outline/index.js",
"types": "./dist/icons/outline/index.d.ts"
}
},
"./solid": {
"require": {
"import": "./dist/icons/solid/index.js",
"types": "./dist/icons/solid/index.d.ts"
},
"import": {
"import": "./dist/icons/solid/index.js",
"types": "./dist/icons/solid/index.d.ts"
}
}
},
"license": "ISC",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollupPrebuild": "rimraf dist",
"rollupBuildProd": "rollup -c --environment NODE_ENV:production",
"deploy": "git pull origin main && yarn rollupPrebuild && yarn rollupBuildProd && git add . && yarn version --patch && git push origin main && git push origin main --tags"
},
"keywords": [],
"author": "",
"peerDependencies": {
"react": "^18.x"
},
"devDependencies": {
"rollup": "^4.19.0"
}
}