-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@aptabase/electron",
"version": "0.3.1",
"private": false,
"description": "Electron SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
"sideEffects": false,
"main": "./dist/main.cjs",
"types": "./dist/main.d.ts",
"exports": {
"./package.json": "./package.json",
"./main": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts"
},
"./renderer": {
"import": "./dist/renderer.mjs",
"require": "./dist/renderer.cjs",
"types": "./dist/renderer.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aptabase/aptabase-electron.git"
},
"bugs": {
"url": "https://github.com/aptabase/aptabase-electron/issues"
},
"homepage": "https://github.com/aptabase/aptabase-electron",
"license": "MIT",
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"files": [
"README.md",
"LICENSE",
"dist",
"package.json"
],
"devDependencies": {
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"electron": ">= 3.x"
}
}