-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
{
"name": "@mparticle/web-rokt-pay-plus-kit",
"version": "1.0.0",
"description": "mParticle web kit that re-emits the events an advertiser already logs to the embedding Rokt Pay+ plugin via postMessage.",
"main": "dist/RoktPayPlus-Kit.common.js",
"module": "dist/RoktPayPlus-Kit.esm.js",
"browser": "dist/RoktPayPlus-Kit.iife.js",
"types": "dist/RoktPayPlus-Kit.d.ts",
"exports": {
".": {
"types": "./dist/RoktPayPlus-Kit.d.ts",
"import": "./dist/RoktPayPlus-Kit.esm.js",
"require": "./dist/RoktPayPlus-Kit.common.js"
}
},
"files": [
"dist/RoktPayPlus-Kit.common.js",
"dist/RoktPayPlus-Kit.esm.js",
"dist/RoktPayPlus-Kit.iife.js",
"dist/RoktPayPlus-Kit.d.ts"
],
"repository": "https://github.com/ROKT/mparticle-javascript-integration-roktpayplus",
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.2",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3",
"vite": "^6.0.0",
"vite-plugin-dts": "~3.8.1",
"vitest": "^4.0.0"
},
"dependencies": {
"@mparticle/web-sdk": "^2.62.0"
},
"license": "Apache-2.0"
}