Zalvena/packages/web/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2023-08-21 23:43:50 +02:00
{
"name": "@aptabase/web",
"version": "0.1.3",
"type": "module",
"description": "JavaScript SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aptabase/aptabase-js.git",
2023-09-01 10:52:15 +01:00
"directory": "packages/web"
2023-08-21 23:43:50 +02:00
},
"bugs": {
"url": "https://github.com/aptabase/aptabase-js/issues"
},
"homepage": "https://github.com/aptabase/aptabase-js",
"license": "MIT",
"scripts": {
"build": "rollup -c ./rollup.config.mjs",
"watch": "rollup -c ./rollup.config.mjs -w",
2023-08-31 16:16:38 +01:00
"prepublishOnly": "npm run build",
"pretest": "npm run build"
2023-08-21 23:43:50 +02:00
},
"files": [
"README.md",
"LICENSE",
"dist",
"package.json"
],
"devDependencies": {
"@rollup/plugin-replace": "5.0.2",
2023-08-31 16:16:38 +01:00
"@rollup/plugin-typescript": "11.1.3",
"rollup": "3.28.1",
"@rollup/plugin-terser": "0.4.3",
"tslib": "2.6.2",
"typescript": "5.2.2"
2023-08-21 23:43:50 +02:00
}
}