|
| 1 | +{ |
| 2 | + "name": "ts-sha", |
| 3 | + "type": "module", |
| 4 | + "version": "0.0.0", |
| 5 | + "description": "A SHA-1, SHA-256, SHA-384, SHA-512 hashing library.", |
| 6 | + "author": "Chris Breuer <chris@stacksjs.org> (https://github.com/chrisbbreuer)", |
| 7 | + "license": "MIT", |
| 8 | + "homepage": "https://github.com/stacksjs/ts-security#readme", |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "git+https://github.com/stacksjs/ts-security.git" |
| 12 | + }, |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/stacksjs/ts-security/issues" |
| 15 | + }, |
| 16 | + "keywords": [ |
| 17 | + "sha", |
| 18 | + "sha1", |
| 19 | + "sha256", |
| 20 | + "sha384", |
| 21 | + "sha512", |
| 22 | + "hashing", |
| 23 | + "crypto", |
| 24 | + "cryptography", |
| 25 | + "bun", |
| 26 | + "stacks", |
| 27 | + "node-forge", |
| 28 | + "typescript", |
| 29 | + "javascript" |
| 30 | + ], |
| 31 | + "exports": { |
| 32 | + ".": { |
| 33 | + "import": "./dist/index.js", |
| 34 | + "types": "./dist/index.d.ts" |
| 35 | + } |
| 36 | + }, |
| 37 | + "module": "./dist/index.js", |
| 38 | + "types": "./dist/index.d.ts", |
| 39 | + "files": ["README.md", "dist"], |
| 40 | + "scripts": { |
| 41 | + "build": "bun build.ts", |
| 42 | + "lint": "bunx --bun eslint .", |
| 43 | + "lint:fix": "bunx --bun eslint . --fix", |
| 44 | + "fresh": "bunx rimraf node_modules/ bun.lock && bun i", |
| 45 | + "changelog": "bunx changelogen --output CHANGELOG.md", |
| 46 | + "prepublishOnly": "bun --bun run build", |
| 47 | + "release": "bun run changelog && bunx bumpp package.json --all", |
| 48 | + "test": "bun test", |
| 49 | + "typecheck": "bun --bun tsc --noEmit" |
| 50 | + }, |
| 51 | + "devDependencies": { |
| 52 | + "@stacksjs/docs": "^0.69.3", |
| 53 | + "@types/bun": "^1.2.3", |
| 54 | + "bun-plugin-dtsx": "^0.21.9", |
| 55 | + "typescript": "^5.7.3" |
| 56 | + }, |
| 57 | + "overrides": { |
| 58 | + "unconfig": "0.3.10" |
| 59 | + }, |
| 60 | + "simple-git-hooks": { |
| 61 | + "pre-commit": "bun lint-staged" |
| 62 | + }, |
| 63 | + "lint-staged": { |
| 64 | + "*.{js,ts}": "bunx eslint . --fix" |
| 65 | + } |
| 66 | +} |
0 commit comments