-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "@giftomatic/popunder",
"version": "1.0.1",
"description": "A lightweight JavaScript module that opens two links simultaneously: one in a new tab and another as a 'popunder' in the original tab after a configurable delay. If the user returns to the original tab before redirection, the event is canceled.",
"scripts": {
"test": "vitest",
"prepublish": "npm run build",
"build": "pnpm run \"/^build:.*/\"",
"build:esm": "vite build --mode esm",
"build:cjs": "vite build --mode cjs",
"build:iife": "vite build --mode iife"
},
"repository": {
"type": "git",
"url": "https://github.com/giftomatic/popunder.git"
},
"keywords": [
"popunder",
"link opener",
"browser redirection",
"dual tab open",
"giftomatic"
],
"author": "Giftomatic",
"license": "MIT",
"module": "dist/esm/popunder.js",
"main": "dist/cjs/popunder.js",
"types": "dist/types/popunder.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/popunder.d.ts",
"import": "./dist/esm/popunder.js",
"require": "./dist/cjs/popunder.js"
}
},
"devDependencies": {
"@vitest/browser": "^4.1.2",
"happy-dom": "^20.8.9",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2"
}
}