Files
smartsign/package.json
T

66 lines
1.4 KiB
JSON
Raw Normal View History

2023-11-25 00:52:56 +01:00
{
"name": "@push.rocks/smartsign",
2026-05-01 18:57:42 +00:00
"version": "1.0.6",
2023-11-25 00:52:56 +01:00
"private": false,
2024-04-14 18:18:37 +02:00
"description": "A library for signing PDF documents.",
"exports": {
".": "./dist_ts/index.js"
},
2023-11-25 00:52:56 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2023-11-25 00:52:56 +01:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
2023-11-25 00:52:56 +01:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0",
"@types/pngjs": "^6.0.5"
2023-11-25 00:52:56 +01:00
},
2023-11-25 01:38:43 +01:00
"dependencies": {
"@push.rocks/smartpdf": "^4.2.2",
"@signpdf/signer-p12": "^3.3.0",
"@signpdf/signpdf": "^3.3.0"
2023-11-25 01:38:43 +01:00
},
2023-11-25 00:52:56 +01:00
"repository": {
"type": "git",
2024-05-29 14:16:11 +02:00
"url": "https://code.foss.global/push.rocks/smartsign.git"
2023-11-25 00:52:56 +01:00
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartsign/issues"
2023-11-25 00:52:56 +01:00
},
2024-05-29 14:16:11 +02:00
"homepage": "https://code.foss.global/push.rocks/smartsign",
2023-11-25 00:52:56 +01:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2023-11-25 00:52:56 +01:00
"npmextra.json",
"readme.md"
2024-04-14 18:18:37 +02:00
],
"keywords": [
"PDF signing",
"document signing",
"smartpdf",
"signpdf",
"typescript",
"node.js",
"certificate",
"P12 cert"
2023-11-25 00:52:56 +01:00
]
}