package.json
{
"name": "@progfay/scrapbox-parser",
"version": "9.1.5",
"type": "module",
"description": "parse Scrapbox notation to JavaScript Object",
"files": [
"out"
],
"main": "./out/index.cjs",
"module": "./out/index.mjs",
"types": "./out/index.d.ts",
"unpkg": "./out/scrapbox-parser.umd.js",
"exports": {
"types": "./out/index.d.ts",
"import": "./out/index.mjs",
"require": "./out/index.cjs",
"node": "./out/index.mjs",
"default": "./out/index.cjs"
},
"scripts": {
"prebuild": "node -e 'fs.rmSync(`out`, {recursive:true, force:true})'",
"build": "run-p build:*",
"build:types": "tsc -p ./tsconfig.json",
"build:vite": "vite build",
"prepare": "npm run build",
"test": "vitest run --coverage",
"test:update": "vitest run -u",
"lint": "run-p lint:*",
"lint:biome": "biome check .",
"lint:tsc": "tsc -p ./tsconfig.lint.json",
"format": "biome check --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/progfay/scrapbox-parser.git"
},
"keywords": [
"scrapbox",
"parser"
],
"author": "progfay",
"license": "MIT",
"bugs": {
"url": "https://github.com/progfay/scrapbox-parser/issues"
},
"homepage": "https://github.com/progfay/scrapbox-parser#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "2.1.4",
"npm-run-all2": "7.0.1",
"typescript": "5.6.3",
"vite": "5.4.10",
"vitest": "2.1.4"
},
"publishConfig": {
"access": "public"
}
}