-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "@deriv-com/multitouch-attribution",
"version": "0.0.0-development",
"type": "module",
"files": [
"dist"
],
"main": "./dist/user-journey-tracker.umd.js",
"module": "./dist/user-journey-tracker.es.js",
"exports": {
".": {
"import": "./dist/user-journey-tracker.es.js",
"require": "./dist/user-journey-tracker.umd.js"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"author": "Aswathy, Shayan",
"repository": {
"type": "git",
"url": "https://github.com/deriv-com/multi-touch-attribution"
},
"homepage": "https://github.com/deriv-com/multi-touch-attribution",
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^10.0.6",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"terser": "^5.19.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.5.4"
},
"license": "MIT",
"lint-staged": {
"*.{js,md,ts}": "prettier --write"
}
}