UNPKG

photo-editor

Version:
63 lines (62 loc) 1.57 kB
{ "type": "module", "name": "photo-editor", "version": "1.0.0", "description": "Simple and customizable photo editor for web applications.", "files": [ "dist" ], "main": "./dist/index.js", "module": "./dist/index.js", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./tools": { "types": "./dist/tools/index.d.ts", "import": "./dist/tools/index.js" } }, "scripts": { "clean": "rimraf dist", "build": "tsup", "test": "bun run lint && bun run test:unit", "lint": "biome check src", "lint:fix": "biome check src --write --unsafe", "test:ts": "tsc", "test:unit": "bun test --coverage", "test:unit:watch": "bun test --wathc", "prepare": "bun run clean && bun run build" }, "repository": { "type": "git", "url": "git+https://github.com/vtaits/photo-editor-js.git" }, "keywords": [ "editor", "image", "photo", "vanilla" ], "author": "Vadim Taits", "license": "MIT", "bugs": { "url": "https://github.com/vtaits/photo-editor-js/issues" }, "homepage": "https://github.com/vtaits/photo-editor-js/tree/master/packages/photo-editor#readme", "devDependencies": { "@biomejs/biome": "^1.9.4", "@happy-dom/global-registrator": "^18.0.1", "happy-dom": "^18.0.1", "rimraf": "^6.0.1", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "dependencies": { "eventemitter3": "^5.0.1", "krustykrab": "^1.1.0" } }