-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "accessible-minimodal",
"version": "2.6.4",
"description": "Accessible, lightweight, stylish JavaScript (TypeScript) modal library",
"repository": {
"type": "git",
"url": "git+https://github.com/imhvost/accessible-minimodal"
},
"keywords": [
"modal",
"dialog",
"accessible modal",
"lightweight modal",
"stylish modal",
"javascript modal",
"typescript modal",
"multiple modal"
],
"author": "imhvost <[email protected]> (https://imhvost.top/)",
"license": "MIT",
"type": "module",
"main": "./dist/accessible-minimodal.cjs.js",
"module": "./dist/accessible-minimodal.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/accessible-minimodal.es.js",
"require": "./dist/accessible-minimodal.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts --fix --ignore-path .gitignore",
"format": "prettier . --write src/"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
}
}