-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "dark-editable",
"description": "In-place editing with Bootstrap 5, Popper, Moment.js",
"author": "DarKsandr",
"license": "MIT",
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/dark-editable.js",
"types": "./dist/dark-editable.d.ts",
"exports": {
"import": "./dist/dark-editable.js",
"require": "./dist/dark-editable.umd.cjs"
},
"peerDependencies": {
"bootstrap": "^5.3",
"moment": "^2.30.1"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-lib-inject-css": "^2.2.1"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"version": "2.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/DarKsandr/dark-editable.git"
},
"bugs": {
"url": "https://github.com/DarKsandr/dark-editable/issues"
},
"homepage": "https://github.com/DarKsandr/dark-editable#readme"
}