-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.54 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
56
57
58
59
60
{
"name": "swetrix",
"version": "3.5.3",
"description": "The JavaScript analytics client for Swetrix Analytics",
"main": "dist/swetrix.cjs.js",
"module": "dist/swetrix.es5.js",
"browser": "dist/swetrix.js",
"esnext": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "rollup -c && npm run tsc",
"start": "rollup -c -w",
"tsc": "tsc -p tsconfig.esnext.json"
},
"exports": {
".": {
"import": "./dist/esnext/index.js",
"require": "./dist/swetrix.cjs.js",
"types": "./dist/esnext/index.d.ts",
"default": "./dist/swetrix.js"
}
},
"keywords": [
"swetrix",
"analytics",
"monitoring",
"metrics",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Swetrix/swetrix-js.git"
},
"author": "Andrii Romasiun, Swetrix Ltd. <[email protected]>",
"funding": "https://github.com/sponsors/Swetrix",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swetrix/swetrix-js/issues"
},
"homepage": "https://docs.swetrix.com",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.1",
"rimraf": "^6.0.1",
"rollup": "^4.28.0",
"typescript": "^5.7.2"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error",
"version": ">=22"
}
}
}