mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
Flatten workspace (#120)
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "@vjs-10/react",
|
||||
"type": "module",
|
||||
"version": "0.1.0",
|
||||
"description": "React library for building media players",
|
||||
"license": "Apache-2.0",
|
||||
"keywords": [
|
||||
"media",
|
||||
"player",
|
||||
"react",
|
||||
"components",
|
||||
"hooks"
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./store": {
|
||||
"types": "./dist/store.d.ts",
|
||||
"default": "./dist/store.js"
|
||||
},
|
||||
"./icons": {
|
||||
"types": "./dist/icons.d.ts",
|
||||
"default": "./dist/icons.js"
|
||||
},
|
||||
"./skins/frosted": {
|
||||
"types": "./dist/skins/frosted.d.ts",
|
||||
"default": "./dist/skins/frosted.js"
|
||||
},
|
||||
"./skins/minimal": {
|
||||
"types": "./dist/skins/minimal.d.ts",
|
||||
"default": "./dist/skins/minimal.js"
|
||||
},
|
||||
"./skins/frosted.css": "./dist/skins/frosted.css",
|
||||
"./skins/minimal.css": "./dist/skins/minimal.css"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsdown",
|
||||
"build:watch": "tsdown --watch ./src --silent",
|
||||
"dev": "pnpm run build:watch",
|
||||
"format:icons": "echo noop. Need to replace based on eslint vs. prettier decisions!",
|
||||
"generate:icons": "svgr --config-file svgr.config.js --out-dir src/icons/generated-icons ../icons/assets && pnpm format:icons",
|
||||
"test": "echo \"No tests yet\"",
|
||||
"clean": "rm -rf dist src/icons/generated-icons"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.8.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@floating-ui/react": "^0.27.16",
|
||||
"@vjs-10/core": "workspace:*",
|
||||
"@vjs-10/icons": "workspace:*",
|
||||
"@vjs-10/utils": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@svgr/babel-plugin-add-jsx-attribute": "^8.0.0",
|
||||
"@svgr/cli": "^8.1.0",
|
||||
"@svgr/plugin-jsx": "^8.1.0",
|
||||
"@tailwindcss/cli": "^4.1.0",
|
||||
"@types/react": "^18.0.0",
|
||||
"postcss": "^8.4.49",
|
||||
"postcss-prefix-selector": "^1.16.1",
|
||||
"react": "^18.0.0",
|
||||
"tailwindcss": "^4.1.13",
|
||||
"tsdown": "^0.15.9",
|
||||
"typescript": "^5.9.2"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user