bilicon
Version:
using bilibili icon/emotions everywhere with iconify!
82 lines • 2.3 kB
JSON
{
"name": "bilicon",
"type": "module",
"version": "0.8.0",
"description": "using bilibili icon/emotions everywhere with iconify!",
"author": "gweesin<gweesin2000@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/gweesin",
"homepage": "https://bilicon.netlify.app",
"repository": {
"type": "git",
"url": "git+https://github.com/gweesin/bilicon.git"
},
"bugs": "https://github.com/gweesin/bilicon/issues",
"keywords": [],
"sideEffects": false,
"exports": {
"./*": "./*",
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"dependencies": {
"@iconify/types": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@antfu/ni": "^25.0.0",
"@antfu/utils": "^9.2.0",
"@iconify/tools": "^4.1.2",
"@types/node": "^24.0.12",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"bumpp": "^10.2.0",
"eslint": "^9.30.1",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"p-limit": "^6.2.0",
"simple-git-hooks": "^2.13.0",
"tinyexec": "^1.0.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vite": "^7.0.3",
"vitest": "^3.2.4",
"vitest-package-exports": "^0.1.1",
"yaml": "^2.8.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"gen": "run-p gen:bili gen:zhihu gen:douyin gen:rednote",
"gen:bili": "tsx scripts/gen/bili.ts",
"gen:zhihu": "tsx scripts/gen/zhihu.ts",
"gen:douyin": "tsx scripts/gen/douyin.ts",
"gen:rednote": "tsx scripts/gen/rednote.ts",
"postgen": "eslint --fix",
"test": "vitest",
"typecheck": "tsc --noEmit",
"docs:dev": "pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"ci:build": "pnpm build && pnpm docs:build"
}
}