-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 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
{
"version": "0.3.0",
"name": "@goplayerzero/sdk-web",
"description": "The official PlayerZero Web SDK",
"author": {
"name": "PlayerZero Support",
"email": "support@playerzero.app",
"url": "https://www.playerzero.app"
},
"main": "./index.js",
"types": "./@types/index.d.ts",
"homepage": "https://github.com/goplayerzero/sdk-web",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/goplayerzero/sdk-web.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"clean": "rimraf dist \"**/package-lock.json\" node_modules",
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json --watch"
},
"devDependencies": {
"@types/node": "^16.11.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"tslib": "^2.4.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.15"
},
"keywords": [
"javascript",
"playerzero",
"sdk",
"web",
"issues",
"quality",
"analytics",
"logrocket",
"sentry",
"fullstory"
]
}