-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.88 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@premely/analytics",
"version": "0.1.1",
"description": "Privacy-first website analytics SDK for JavaScript, TypeScript, React, Next.js, Vue and Svelte.",
"keywords": [
"analytics",
"web analytics",
"website analytics",
"privacy-first analytics",
"cookieless analytics",
"conversion tracking",
"revenue analytics",
"javascript analytics",
"typescript analytics",
"react analytics",
"nextjs analytics",
"vue analytics",
"svelte analytics"
],
"author": "Premely <support@premely.io> (https://premely.io)",
"homepage": "https://premely.io/docs/install-javascript-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/Premely/analytics.git"
},
"bugs": {
"url": "https://github.com/Premely/analytics/issues",
"email": "support@premely.io"
},
"type": "module",
"license": "MIT",
"sideEffects": [
"./dist/browser.js"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js",
"default": "./dist/browser.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run src/core.test.ts src/index.test.ts",
"prepack": "npm run clean && npm run build && npm test && npm pack --dry-run --ignore-scripts",
"clean": "node scripts/clean.mjs"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@11.16.0",
"devDependencies": {
"terser": "5.49.2",
"typescript": "5.8.2",
"vitest": "4.1.10"
}
}