-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "pirsch-sdk",
"version": "2.8.0",
"description": "TypeScript/JavaScript client SDK for Pirsch.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc --watch",
"package-dist": "rm -rf dist/ && npm run build && mkdir -p dist/ && cp package.json LICENSE README.md dist/",
"package-link": "npm run package-dist && cd dist/ && npm link",
"release": "npm run package-dist && npm publish dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pirsch-analytics/pirsch-js-sdk.git"
},
"keywords": [
"pirsch",
"analytics",
"client",
"sdk",
"api"
],
"author": "Emvi Software GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/pirsch-analytics/pirsch-js-sdk/issues"
},
"homepage": "https://pirsch.io/",
"dependencies": {
"@types/node": "^22.5.0",
"axios": "^1.7.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"typescript": "^5.5.4"
}
}