mirror of
https://github.com/cupcakearmy/occulto.git
synced 2024-12-22 09:26:28 +00:00
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "occulto",
|
|
"version": "2.0.0-rc.0",
|
|
"description": "crypt utility",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CupCakeArmy/occulto"
|
|
},
|
|
"keywords": [
|
|
"crypto",
|
|
"chacha20",
|
|
"aes",
|
|
"rsa",
|
|
"high level"
|
|
],
|
|
"author": "Niccolo Borgioli",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=16",
|
|
"npm": "please-use-pnpm",
|
|
"yarn": "please-use-pnpm",
|
|
"pnpm": "7"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.js",
|
|
"types": "./dist/esm/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"docs": "typedoc",
|
|
"test:node": "mocha",
|
|
"test:browser": "karma start .karma.cjs",
|
|
"test": "run-s build test:*",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
"build": "run-s clean build:*",
|
|
"clean": "rm -rf ./dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "16",
|
|
"chai": "^4.3.6",
|
|
"karma": "^6.4.1",
|
|
"karma-chrome-launcher": "^3.1.1",
|
|
"karma-firefox-launcher": "^2.1.2",
|
|
"karma-mocha": "^2.0.1",
|
|
"mocha": "^10.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"typedoc": "^0.23.15",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|