osbtools
Version:
A set of tools for working with osu! storyboards
42 lines (41 loc) • 1.2 kB
JSON
{
"name": "osbtools",
"version": "1.2.1",
"keywords": [
"osu",
"osb",
"storyboard",
"tools",
"parse"
],
"scripts": {
"example:index": "npx ts-node ./examples/index.ts",
"example:parsing": "npx ts-node ./examples/parsing.ts",
"lint": "eslint",
"lint:fix": "eslint --fix src/**/*.ts tests/**/*.ts",
"format": "prettier --check src/**/*.ts tests/**/*.ts",
"format:fix": "prettier --write src/**/*.ts tests/**/*.ts",
"test": "vitest",
"pack": "npm run format:fix && npm run lint:fix && npm run test && npx tsc"
},
"author": "PantyDev <pantypon@gmail.com>",
"license": "ISC",
"repository": "pantosu/osbtools",
"homepage": "https://github.com/pantosu/osbtools?#readme",
"description": "A set of tools for working with osu! storyboards",
"dependencies": {
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"vitest": "^3.0.4"
},
"main": "dist/index.js",
"types": "src/index.ts"
}