smartcrypto/package.json

59 lines
1.4 KiB
JSON
Raw Normal View History

2019-10-01 12:11:20 +00:00
{
2023-07-10 00:42:50 +00:00
"name": "@push.rocks/smartcrypto",
2024-02-09 16:53:20 +00:00
"version": "2.0.5",
2019-10-01 12:11:20 +00:00
"private": false,
2024-04-14 15:26:24 +00:00
"description": "A library providing easy methods for cryptographic operations, including key pair generation.",
2021-02-20 17:51:30 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-10-01 12:11:20 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-02-20 17:51:30 +00:00
"test": "(tstest test/ --web)",
2022-10-23 21:53:34 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2019-10-01 12:11:20 +00:00
},
"devDependencies": {
2024-02-09 16:52:13 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.86",
2023-08-21 06:29:27 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-02-09 16:52:13 +00:00
"@types/node": "^20.11.17"
2019-10-01 12:11:20 +00:00
},
"dependencies": {
2023-08-21 06:29:27 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-02-09 16:52:13 +00:00
"@types/node-forge": "^1.3.11",
2022-10-23 21:53:34 +00:00
"node-forge": "^1.3.1"
2019-10-01 17:28:50 +00:00
},
"files": [
2021-02-20 17:52:21 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-10-01 17:28:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-02-20 17:52:21 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-10-23 21:53:34 +00:00
],
2024-04-14 15:26:24 +00:00
"type": "module",
"keywords": [
"cryptography",
"encryption",
"security",
"public key",
"private key",
"RSA",
"key pair generation",
"node-forge",
"typescript"
2024-05-29 12:12:18 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartcrypto",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartcrypto.git"
}
2024-04-14 15:26:24 +00:00
}