All checks were successful
Build & Deploy to Staging / Build & Deploy to Staging (push) Successful in 9m29s
48 lines
1 KiB
JSON
48 lines
1 KiB
JSON
{
|
|
"name": "snapapi",
|
|
"version": "1.0.0",
|
|
"description": "Official Node.js SDK for SnapAPI — EU-hosted screenshot API",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && tsc --module commonjs --outDir dist/cjs && mv dist/cjs/index.js dist/index.cjs && rm -rf dist/cjs",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"screenshot",
|
|
"api",
|
|
"webpage",
|
|
"capture",
|
|
"puppeteer",
|
|
"headless",
|
|
"eu",
|
|
"gdpr"
|
|
],
|
|
"author": "Cloonar Technologies GmbH",
|
|
"license": "MIT",
|
|
"homepage": "https://snapapi.eu",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cloonar.com/openclawd/SnapAPI"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|