-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "@swetrix/node",
"version": "2.1.0",
"description": "Swetrix NodeJS server-side tracking module",
"main": "dist/swetrix.cjs.js",
"module": "dist/swetrix.es5.js",
"esnext": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"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. <[email protected]>",
"funding": "https://ko-fi.com/andriir",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swetrix/swetrix-node/issues"
},
"homepage": "https://docs.swetrix.com",
"dependencies": {
"@types/node": "^20.6.0",
"node-fetch": "^3.3.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/node-fetch": "^2.6.4",
"rimraf": "^4.4.1",
"rollup": "^2.79.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.2.2"
}
}