This repository was archived by the owner on Feb 15, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "@swetrix/node",
"version": "3.1.1",
"description": "Swetrix NodeJS server-side tracking module",
"type": "module",
"main": "dist/swetrix.cjs",
"module": "dist/swetrix.es5.js",
"esnext": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"exports": {
".": {
"types": "./dist/esnext/index.d.ts",
"import": "./dist/swetrix.es5.js",
"require": "./dist/swetrix.cjs"
}
},
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "rollup -c && tsc -p tsconfig.esnext.json",
"start": "rollup -c -w",
"tsc": "tsc -p tsconfig.esnext.json"
},
"keywords": [
"swetrix",
"analytics",
"monitoring",
"metrics",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Swetrix/swetrix-node.git"
},
"author": "Andrii R. <andrii@swetrix.com>",
"funding": "https://ko-fi.com/andriir",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swetrix/swetrix-node/issues"
},
"homepage": "https://docs.swetrix.com",
"devDependencies": {
"@types/node": "^25.0.3",
"node-fetch": "^3.3.2",
"tslib": "^2.8.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node-fetch": "^2.6.13",
"rimraf": "^6.1.2",
"rollup": "^4.54.0",
"typescript": "^5.9.3"
}
}