-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "@funtech-inc/handshake",
"version": "0.0.12",
"description": "🤝 Shake hands with iframe",
"main": "./build/handshake.umd.cjs",
"module": "./build/handshake.js",
"types": "./types/handshake.d.ts",
"unpkg": "./build/handshake.min.js",
"sideEffects": false,
"exports": {
".": {
"types": "./types/handshake.d.ts",
"require": "./build/handshake.umd.cjs",
"import": "./build/handshake.js"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"vitest": "vitest run --browser",
"test": "start-server-and-test dev http://localhost:5173 'vitest --browser'",
"clean": "rimraf build && rimraf types"
},
"repository": {
"type": "git",
"url": "https://github.com/FunTechInc/handshake"
},
"keywords": [
"iframe",
"postmessage",
"handshake"
],
"author": "HASHIMOTO Takuma (https://github.com/takuma-hmng8) from FunTech (https://github.com/FunTechInc)",
"license": "MIT",
"files": [
"build",
"types"
],
"devDependencies": {
"@vitest/browser": "^3.0.5",
"start-server-and-test": "^2.0.10",
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vitest": "^3.0.5"
}
}