mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@vjs-10/react-icons",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "React icon library for Video.js",
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"icons",
|
|
"react",
|
|
"media",
|
|
"player",
|
|
"components"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm generate:icons && tsdown",
|
|
"build:watch": "tsdown --watch --silent",
|
|
"dev": "pnpm generate:icons && pnpm run build:watch",
|
|
"clean": "rm -rf dist src/generated-icons",
|
|
"format:icons": "echo noop. Need to replace based on eslint vs. prettier decisions!",
|
|
"generate:icons": "svgr --config-file svgr.config.js --out-dir src/generated-icons ../../core/icons/assets && pnpm format:icons",
|
|
"test": "echo \"No tests yet\""
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@vjs-10/icons": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/babel-plugin-add-jsx-attribute": "^8.0.0",
|
|
"@svgr/cli": "^8.1.0",
|
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
"@types/react": "^18.0.0",
|
|
"react": "^18.0.0",
|
|
"tsdown": "^0.15.9",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|