-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 734 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 734 Bytes
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
{
"name": "ipopup",
"version": "1.0.1",
"description": "TS modal popup",
"type": "module",
"files": [
"dist"
],
"main": "./dist/i-popup.umd.js",
"module": "./dist/i-popup.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/i-popup.js",
"require": "./dist/i-popup.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"devs": "vite --https",
"build": "tsc && vite build",
"preview": "vite preview"
},
"author": "Oshchenkov",
"license": "ISC",
"devDependencies": {
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Oshchenkov/ipopup.git"
}
}