s3db.js 10.0.3 → 10.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s3db.js",
3
- "version": "10.0.3",
3
+ "version": "10.0.5",
4
4
  "description": "Use AWS S3, the world's most reliable document storage, as a database with this ORM.",
5
5
  "main": "dist/s3db.cjs.js",
6
6
  "module": "dist/s3db.es.js",
@@ -57,6 +57,27 @@
57
57
  "PLUGINS.md",
58
58
  "UNLICENSE"
59
59
  ],
60
+ "scripts": {
61
+ "build": "rollup -c",
62
+ "build:cli": "rollup -c rollup.cli.config.mjs",
63
+ "build:binaries": "./scripts/scripts/build-binaries.sh",
64
+ "dev": "rollup -c -w",
65
+ "test": "pnpm run test:js && pnpm run test:ts",
66
+ "test:js": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000",
67
+ "test:ts": "tsc --noEmit --project tests/typescript/tsconfig.json",
68
+ "test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --coverage --runInBand",
69
+ "test:quick": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testTimeout=10000",
70
+ "test:plugins": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js tests/plugins/ --runInBand --testTimeout=60000",
71
+ "test:full": "pnpm run test:js && pnpm run test:ts",
72
+ "benchmark": "node benchmark-compression.js",
73
+ "prepare": "pnpm run build",
74
+ "version": "echo 'Use pnpm run release v<version> instead of npm version'",
75
+ "prepack": "pnpm run build",
76
+ "release:check": "./scripts/pre-release-check.sh",
77
+ "release:prepare": "pnpm run build:binaries && echo 'Binaries ready for GitHub release'",
78
+ "release": "./scripts/release.sh",
79
+ "validate:types": "pnpm run test:ts && echo 'TypeScript definitions are valid!'"
80
+ },
60
81
  "dependencies": {
61
82
  "@aws-sdk/client-s3": "^3.873.0",
62
83
  "@modelcontextprotocol/sdk": "^1.17.4",
@@ -124,24 +145,5 @@
124
145
  },
125
146
  "funding": [
126
147
  "https://github.com/sponsors/forattini-dev"
127
- ],
128
- "scripts": {
129
- "build": "rollup -c",
130
- "build:cli": "rollup -c rollup.cli.config.mjs",
131
- "build:binaries": "./scripts/scripts/build-binaries.sh",
132
- "dev": "rollup -c -w",
133
- "test": "pnpm run test:js && pnpm run test:ts",
134
- "test:js": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000",
135
- "test:ts": "tsc --noEmit --project tests/typescript/tsconfig.json",
136
- "test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --coverage --runInBand",
137
- "test:quick": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testTimeout=10000",
138
- "test:plugins": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js tests/plugins/ --runInBand --testTimeout=60000",
139
- "test:full": "pnpm run test:js && pnpm run test:ts",
140
- "benchmark": "node benchmark-compression.js",
141
- "version": "echo 'Use pnpm run release v<version> instead of npm version'",
142
- "release:check": "./scripts/pre-release-check.sh",
143
- "release:prepare": "pnpm run build:binaries && echo 'Binaries ready for GitHub release'",
144
- "release": "./scripts/release.sh",
145
- "validate:types": "pnpm run test:ts && echo 'TypeScript definitions are valid!'"
146
- }
147
- }
148
+ ]
149
+ }