| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "@deepseek-ai/dsh-util-crypto",
- "description": "Zero-dependency crypto-adjacent helpers usable in every context (browser, worker, Node) including insecure origins: v4 UUID minting over crypto.getRandomValues today, room for siblings",
- "version": "0.1.0-rc.8",
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
- "directory": "packages/util/crypto"
- },
- "type": "module",
- "main": "lib/index.js",
- "types": "lib/types/index.d.ts",
- "exports": {
- ".": {
- "types": "./lib/types/index.d.ts",
- "default": "./lib/index.js"
- },
- "./invariant": {
- "types": "./lib/types/invariant.d.ts",
- "default": "./lib/invariant.js"
- },
- "./src/*": "./src/*",
- "./package.json": "./package.json"
- },
- "files": [
- "lib/index.js",
- "lib/invariant.js",
- "lib/types/**/*.d.ts"
- ],
- "license": "MIT",
- "peerDependencies": {
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/cordis": "workspace:^"
- },
- "devDependencies": {
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/cordis": "workspace:^"
- }
- }
|