@synstack/fs
Version:
File system operations made easy
91 lines (90 loc) • 2.25 kB
JSON
{
"name": "@synstack/fs",
"type": "module",
"publishConfig": {
"access": "public"
},
"version": "1.14.0",
"description": "File system operations made easy",
"keywords": [
"synstack",
"fs",
"file system",
"immutable",
"chainable",
"path",
"json",
"yaml",
"xml",
"markdown"
],
"author": {
"name": "pAIrprog",
"url": "https://pairprog.io"
},
"homepage": "https://github.com/pAIrprogio/synscript/tree/main/packages/fs",
"repository": {
"type": "git",
"url": "https://github.com/pAIrprogio/synscript.git",
"directory": "packages/fs"
},
"license": "Apache-2.0",
"scripts": {
"build": "tsup",
"prepack": "pnpm build",
"build:watch": "tsup --watch",
"test:types": "tsc --noEmit",
"test:unit": "node --experimental-strip-types --experimental-test-snapshots --no-warnings --test src/**/*.test.ts",
"test:unit:watch": "node --experimental-strip-types --experimental-test-snapshots --no-warnings --watch --test --watch src/**/*.test.ts",
"test": "pnpm test:types && pnpm test:unit"
},
"exports": {
".": {
"import": {
"types": "./dist/fs.index.d.ts",
"default": "./dist/fs.index.js"
},
"require": {
"types": "./dist/fs.index.d.cts",
"default": "./dist/fs.index.cjs"
}
}
},
"dependencies": {
"@synstack/enhance": "^1.1.11",
"@synstack/git": "^1.3.1",
"@synstack/glob": "^1.3.0",
"@synstack/json": "^1.1.13",
"@synstack/markdown": "^1.3.7",
"@synstack/path": "^1.2.0",
"@synstack/pipe": "^1.1.17",
"@synstack/str": "^1.3.0",
"@synstack/xml": "^1.2.14",
"@synstack/yaml": "^1.1.14",
"mime-types": "^3.0.1"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/node": "^22.15.32",
"@types/turndown": "^5.0.5",
"execa": "^9.6.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"zod": "^3.25.67"
},
"peerDependencies": {
"execa": "*",
"zod": "^3.25.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"execa": {
"optional": true
}
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"dist/**/*"
],
"gitHead": "4e08dc78ee4b08e90da2add40d52a79e9c0c3074"
}