UNPKG

@ioris/core

Version:

This package provides the core functionality for the [@ioris](https://www.npmjs.com/search?q=%40ioris) ecosystem for managing music lyrics with time synchronization.

67 lines (66 loc) 1.49 kB
{ "name": "@ioris/core", "version": "0.4.0", "description": "", "type": "module", "main": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "default": "./dist/index.mjs" }, "directories": { "lib": "src", "example": "example" }, "files": [ "dist" ], "scripts": { "dev": "npm run build && cd example && npm run dev", "format": "biome check --fix", "lint": "run-p lint:*", "lint:biome": "biome check", "lint:ts": "tsc", "build": "rimraf ./dist && run-p build:*", "build:esbuild": "tsx build.ts", "build:types": "tsc", "coverage": "vitest run --coverage", "test": "vitest run" }, "repository": { "type": "git", "url": "git+https://github.com/8beeeaaat/iori_core.git" }, "publishConfig": { "access": "public" }, "keywords": [ "music", "lyric", "sync", "iori" ], "author": "8beeeaaat", "license": "MIT", "bugs": { "url": "https://github.com/8beeeaaat/iori_core/issues" }, "homepage": "https://github.com/8beeeaaat/iori_core#readme", "devDependencies": { "@biomejs/biome": "2.3.8", "@vitest/coverage-v8": "^4.0.15", "esbuild": "^0.27.1", "globals": "^16.5.0", "jsdom": "^27.3.0", "npm-run-all": "^4.1.5", "rimraf": "^6.1.2", "tsx": "^4.21.0", "typescript": "^5.9.3", "vitest": "^4.0.15" }, "dependencies": { "zod": "^4.1.13" } }