-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- project: document-model-libs 1.93.0
- Loading branch information
Github Actions Bot
committed
Oct 9, 2024
1 parent
b8c1a72
commit 88d713c
Showing
5 changed files
with
247 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,75 @@ | ||
{ | ||
"name": "document-drive", | ||
"version": "1.0.0-alpha.102", | ||
"license": "AGPL-3.0-only", | ||
"type": "module", | ||
"module": "./src/index.ts", | ||
"types": "./src/index.ts", | ||
"exports": { | ||
".": "./src/index.ts", | ||
"./server": "./src/server/index.ts", | ||
"./storage": "./src/storage/index.ts", | ||
"./storage/browser": "./src/storage/browser.ts", | ||
"./storage/filesystem": "./src/storage/filesystem.ts", | ||
"./storage/memory": "./src/storage/memory.ts", | ||
"./storage/prisma": "./src/storage/prisma.ts", | ||
"./cache/redis": "./src/cache/redis.ts", | ||
"./cache/memory": "./src/cache/memory.ts", | ||
"./queue/redis": "./src/queue/redis.ts", | ||
"./queue/base": "./src/queue/base.ts", | ||
"./utils": "./src/utils/index.ts", | ||
"./utils/graphql": "./src/utils/graphql.ts", | ||
"./utils/migrations": "./src/utils/migrations.ts", | ||
"./logger": "./src/utils/logger.ts" | ||
}, | ||
"files": [ | ||
"./src" | ||
], | ||
"scripts": { | ||
"check-types": "tsc --noEmit", | ||
"postlint": "npm run check-types", | ||
"lint": "eslint", | ||
"release": "semantic-release", | ||
"test": "vitest run --coverage --exclude \"test/flaky/**\"", | ||
"test:watch": "vitest watch", | ||
"clean": "rimraf dist", | ||
"clean:node_modules": "rimraf node_modules", | ||
"build": "prisma generate" | ||
}, | ||
"peerDependencies": { | ||
"document-model": "^2.1.0", | ||
"document-model-libs": "^1.92.0" | ||
}, | ||
"optionalDependencies": { | ||
"@prisma/client": "^5.18.0", | ||
"localforage": "^1.10.0", | ||
"redis": "^4.6.15", | ||
"sequelize": "^6.37.3", | ||
"sqlite3": "^5.1.7" | ||
}, | ||
"dependencies": { | ||
"change-case": "^5.4.4", | ||
"exponential-backoff": "^3.1.1", | ||
"graphql": "^16.9.0", | ||
"graphql-request": "^6.1.0", | ||
"json-stringify-deterministic": "^1.0.12", | ||
"nanoevents": "^9.0.0", | ||
"sanitize-filename": "^1.6.3", | ||
"uuid": "^9.0.1" | ||
}, | ||
"devDependencies": { | ||
"@prisma/client": "5.17.0", | ||
"@types/node": "^20.14.11", | ||
"@types/uuid": "^9.0.8", | ||
"document-model": "workspace:*", | ||
"document-model-libs": "workspace:*", | ||
"fake-indexeddb": "^5.0.2", | ||
"localforage": "^1.10.0", | ||
"msw": "^2.3.1", | ||
"prisma": "^5.18.0", | ||
"sequelize": "^6.37.2", | ||
"sqlite3": "^5.1.7", | ||
"webdriverio": "^9.0.9", | ||
"vitest-fetch-mock": "^0.3.0" | ||
} | ||
"name": "document-drive", | ||
"version": "1.0.0", | ||
"license": "AGPL-3.0-only", | ||
"type": "module", | ||
"module": "./src/index.ts", | ||
"types": "./src/index.ts", | ||
"exports": { | ||
".": "./src/index.ts", | ||
"./server": "./src/server/index.ts", | ||
"./storage": "./src/storage/index.ts", | ||
"./storage/browser": "./src/storage/browser.ts", | ||
"./storage/filesystem": "./src/storage/filesystem.ts", | ||
"./storage/memory": "./src/storage/memory.ts", | ||
"./storage/prisma": "./src/storage/prisma.ts", | ||
"./cache/redis": "./src/cache/redis.ts", | ||
"./cache/memory": "./src/cache/memory.ts", | ||
"./queue/redis": "./src/queue/redis.ts", | ||
"./queue/base": "./src/queue/base.ts", | ||
"./utils": "./src/utils/index.ts", | ||
"./utils/graphql": "./src/utils/graphql.ts", | ||
"./utils/migrations": "./src/utils/migrations.ts", | ||
"./logger": "./src/utils/logger.ts" | ||
}, | ||
"files": [ | ||
"./src" | ||
], | ||
"scripts": { | ||
"check-types": "tsc --noEmit", | ||
"postlint": "npm run check-types", | ||
"lint": "eslint", | ||
"release": "semantic-release", | ||
"test": "vitest run --coverage --exclude \"test/flaky/**\"", | ||
"test:watch": "vitest watch", | ||
"clean": "rimraf dist", | ||
"clean:node_modules": "rimraf node_modules", | ||
"build": "prisma generate" | ||
}, | ||
"peerDependencies": { | ||
"document-model": "^2.1.0", | ||
"document-model-libs": "^1.92.0" | ||
}, | ||
"optionalDependencies": { | ||
"@prisma/client": "^5.18.0", | ||
"localforage": "^1.10.0", | ||
"redis": "^4.6.15", | ||
"sequelize": "^6.37.3", | ||
"sqlite3": "^5.1.7" | ||
}, | ||
"dependencies": { | ||
"change-case": "^5.4.4", | ||
"exponential-backoff": "^3.1.1", | ||
"graphql": "^16.9.0", | ||
"graphql-request": "^6.1.0", | ||
"json-stringify-deterministic": "^1.0.12", | ||
"nanoevents": "^9.0.0", | ||
"sanitize-filename": "^1.6.3", | ||
"uuid": "^9.0.1" | ||
}, | ||
"devDependencies": { | ||
"@prisma/client": "5.17.0", | ||
"@types/node": "^20.14.11", | ||
"@types/uuid": "^9.0.8", | ||
"document-model": "workspace:*", | ||
"document-model-libs": "1.93.0", | ||
"fake-indexeddb": "^5.0.2", | ||
"localforage": "^1.10.0", | ||
"msw": "^2.3.1", | ||
"prisma": "^5.18.0", | ||
"sequelize": "^6.37.2", | ||
"sqlite3": "^5.1.7", | ||
"webdriverio": "^9.0.9", | ||
"vitest-fetch-mock": "^0.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.