-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 KB
/
package.json
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
{
"name": "@giftomatic/copy-and-go",
"version": "1.0.6",
"description": "A simple script to copy a input value to clipboard, showing a notification and redirecting to a new page",
"repository": {
"type": "git",
"url": "git+/~https://github.com/giftomatic/copy-and-go.git"
},
"homepage": "/~https://github.com/giftomatic/copy-and-go",
"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",
"example": "vite example"
},
"keywords": [],
"author": "Giftomatic",
"license": "ISC",
"module": "dist/esm/copy-and-go.js",
"main": "dist/cjs/copy-and-go.js",
"types": "dist/types/copy-and-go.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types/copy-and-go.d.ts",
"import": "./dist/esm/copy-and-go.js",
"require": "./dist/cjs/copy-and-go.js"
}
},
"devDependencies": {
"happy-dom": "^16.7.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.8"
}
}