UNPKG

@workspace-fs/core

Version:

Multi-project workspace manager for Firesystem with support for multiple sources

78 lines 1.75 kB
{ "name": "@workspace-fs/core", "version": "1.0.8", "description": "Multi-project workspace manager for Firesystem with support for multiple sources", "keywords": [ "vfs", "workspace", "project-manager", "multi-project", "firesystem" ], "author": "Anderson D. Rosa", "license": "MIT", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "src", "README.md" ], "dependencies": { "@firesystem/core": "^1.1.1", "@firesystem/indexeddb": "^1.3.4", "@firesystem/memory": "^1.1.4", "prettier": "^3.5.3" }, "devDependencies": { "@types/jsdom": "^21.1.7", "@types/node": "^20.11.0", "fake-indexeddb": "^6.0.1", "jsdom": "^26.1.0", "tsup": "^8.5.0", "typescript": "^5.3.0", "vitest": "^1.6.1" }, "tsup": { "entry": [ "src/index.ts" ], "format": [ "cjs", "esm" ], "dts": true, "splitting": false, "sourcemap": true, "clean": true, "target": "es2020", "external": [ "@firesystem/core", "@firesystem/memory", "@firesystem/indexeddb" ] }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest --run", "test:watch": "vitest", "typecheck": "tsc --noEmit -p tsconfig.typecheck.json", "format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"", "lint": "eslint src", "lint:fix": "eslint src --fix", "clean": "rm -rf dist node_modules" } }