UNPKG

@cipherstash/jseql

Version:

Encrypted Query Language JavaScript Library

61 lines 1.45 kB
{ "name": "@cipherstash/jseql", "version": "4.0.0-debug.0", "description": "Encrypted Query Language JavaScript Library", "keywords": [ "encrypted", "query", "language", "typescript", "ts", "eql" ], "bugs": { "url": "https://github.com/cipherstash/jseql/issues" }, "repository": { "type": "git", "url": "git+https://github.com/cipherstash/jseql.git" }, "license": "MIT", "author": "CipherStash <hello@cipherstash.com>", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./identify": { "types": "./dist/identify/index.d.ts", "import": "./dist/identify/index.js", "require": "./dist/identify/index.cjs" } }, "devDependencies": { "dotenv": "^16.4.7", "execa": "^9.5.2", "json-schema-to-typescript": "^15.0.2", "tsup": "^8.3.0", "vitest": "^2.1.8" }, "peerDependencies": { "typescript": "^5.0.0" }, "publishConfig": { "access": "public" }, "dependencies": { "@cipherstash/jseql-ffi": "0.5.0" }, "optionalDependencies": { "@rollup/rollup-linux-x64-gnu": "4.24.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "update-schema": "node ./generateSchema.mjs", "generate-types": "json2ts ./cs_plaintext_v1.schema.json --output ./src/cs_plaintext_v1.ts", "test": "vitest run" } }