-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 894 Bytes
/
package.json
File metadata and controls
41 lines (40 loc) · 894 Bytes
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
{
"name": "@epic/centre-analytics",
"version": "1.0.0",
"description": "EPIC Centre Analytics component for cross-application login analytics recording",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.0.0",
"react-oidc-context": "^3.0.0"
},
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@types/react": "^18.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"src",
"tsconfig.json",
"package.json"
]
}