mirror of
https://github.com/cupcakearmy/occulto.git
synced 2025-03-10 20:27:30 +00:00
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"name": "occulto",
|
|
"version": "2.1.0",
|
|
"description": "encryption utility",
|
|
"keywords": [
|
|
"isomorphic",
|
|
"crypto",
|
|
"aes",
|
|
"rsa"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cupcakearmy/occulto"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Niccolo Borgioli",
|
|
"email": "opensource@nicco.io",
|
|
"url": "https://nicco.io"
|
|
},
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"exports": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"docs": "typedoc",
|
|
"test": "vitest",
|
|
"build": "tsc",
|
|
"clean": "rm -rf ./dist",
|
|
"dev": "vitest",
|
|
"prepublishOnly": "run-s clean test"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@types/node": "^22.13.0",
|
|
"@vitest/browser": "^3.0.4",
|
|
"npm-run-all": "^4.1.5",
|
|
"playwright": "^1.50.1",
|
|
"typedoc": "^0.27.6",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.4"
|
|
},
|
|
"packageManager": "pnpm@9.15.4"
|
|
}
|