Zalvena/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2023-04-02 12:43:28 +01:00
{
"name": "@aptabase/web",
2023-05-11 14:19:18 +01:00
"version": "0.1.1",
2023-04-02 12:43:28 +01:00
"private": false,
2023-05-11 12:49:45 +01:00
"type": "module",
2023-04-20 15:23:41 +01:00
"description": "JavaScript SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
2023-05-11 12:49:45 +01:00
"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"
}
},
2023-04-02 12:43:28 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/aptabase/aptabase-js.git"
},
"bugs": {
"url": "https://github.com/aptabase/aptabase-js/issues"
},
"homepage": "https://github.com/aptabase/aptabase-js",
"license": "MIT",
"scripts": {
2023-05-11 12:49:45 +01:00
"build": "rollup -c ./rollup.config.mjs",
"watch": "rollup -c ./rollup.config.mjs -w",
2023-04-02 12:43:28 +01:00
"prepublishOnly": "yarn build",
"pretest": "yarn build"
},
"files": [
"README.md",
"LICENSE",
"dist",
"package.json"
],
"devDependencies": {
"@rollup/plugin-replace": "5.0.2",
2023-05-11 12:49:45 +01:00
"@rollup/plugin-typescript": "11.1.0",
"rollup": "3.21.6",
"@rollup/plugin-terser": "0.4.1",
2023-04-02 12:43:28 +01:00
"tslib": "2.5.0",
2023-05-11 12:49:45 +01:00
"typescript": "5.0.4"
2023-04-02 12:43:28 +01:00
}
}