Files
bruno/packages/bruno-filestore/package.json
Sid 53aa9ed6e3 fix(dependencies): update fast-xml-parser to 5.5.7 and simple-git to … (#7602)
* fix(dependencies): update fast-xml-parser to 5.5.7 and simple-git to 3.32.3; add path-expression-matcher and fast-xml-builder
2026-03-30 19:20:50 +05:30

54 lines
1.4 KiB
JSON

{
"name": "@usebruno/filestore",
"version": "0.1.0",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"package.json"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c && tsc --emitDeclarationOnly",
"watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"prepack": "npm run test && npm run build"
},
"devDependencies": {
"@babel/preset-env": "^7.22.0",
"@babel/preset-typescript": "^7.22.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.191",
"@types/node": "^24.1.0",
"@usebruno/schema-types": "0.0.1",
"babel-jest": "^29.7.0",
"jest": "^29.2.0",
"nanoid": "3.3.8",
"rimraf": "^3.0.2",
"rollup": "3.30.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"@rollup/plugin-terser": "^1.0.0",
"typescript": "^4.8.4"
},
"overrides": {
"rollup": "3.30.0"
},
"dependencies": {
"@types/nanoid": "^2.1.0",
"@usebruno/lang": "0.12.0",
"ajv": "^8.17.1",
"lodash": "^4.17.21",
"yaml": "^2.3.4"
}
}