
- Convert all IIFE modules to ES6 modules with attach functions - Split webpack configs: lib build vs demo build - Add UMD wrapper for auto-initialization with jQuery - Update package.json with sequential build scripts - Clean up legacy dist files and reorganize demo structure Status: jQuery timing issues remain - attach functions not accessible Next: Debug UMD factory execution and jQuery parameter passing
73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
{
|
|
"name": "x-editable-bootstrap5",
|
|
"title": "X-editable Bootstrap 5",
|
|
"description": "A maintained fork of x-editable for Bootstrap 5 support.",
|
|
"version": "25.0.7",
|
|
"homepage": "https://git.24unix.net/tracer/x-editable",
|
|
"author": {
|
|
"name": "Micha Espey",
|
|
"email": "tracer@24unix.net"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Vitaliy Potapov",
|
|
"email": "noginsk@rambler.ru",
|
|
"url": "https://github.com/vitalets",
|
|
"contributions": "Original author of x-editable"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.24unix.net/tracer/x-editable-bs5.git"
|
|
},
|
|
"mirrors": [
|
|
"https://github.com/24unix/x-editable-bs5",
|
|
"https://gitlab.com/24unix/x-editable-bs5"
|
|
],
|
|
"bugs": {
|
|
"url": "https://git.24unix.net/tracer/x-editable/issues"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "https://git.24unix.net/tracer/x-editable/blob/master/LICENSE-MIT"
|
|
}
|
|
],
|
|
"main": "dist/bootstrap5-editable/js/bootstrap-editable.js",
|
|
"style": "dist/bootstrap5-editable/css/bootstrap-editable.css",
|
|
"dependencies": {
|
|
"bootstrap": "^5.3.3",
|
|
"bootstrap-datepicker": "^1.10.0",
|
|
"bootstrap-icons": "^1.11.3",
|
|
"jquery": "^3.7.1",
|
|
"select2": "^4.1.0-rc.0"
|
|
},
|
|
"scripts": {
|
|
"build:lib": "webpack --mode development --config webpack.lib.js",
|
|
"build:demo": "webpack --mode development --config webpack.demo.js",
|
|
"dev": "npm run build:lib && npm run build:demo",
|
|
"watch": "webpack --mode development --watch",
|
|
"prod": "webpack --mode production"
|
|
},
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "^13.0.0",
|
|
"css-loader": "^7.1.2",
|
|
"grunt-contrib-clean": "^2.0.1",
|
|
"grunt-contrib-concat": "^2.1.0",
|
|
"grunt-contrib-connect": "^5.0.1",
|
|
"grunt-contrib-copy": "^1.0.0",
|
|
"grunt-contrib-jshint": "^3.2.0",
|
|
"grunt-contrib-qunit": "^10.1.1",
|
|
"grunt-contrib-uglify": "^5.2.2",
|
|
"style-loader": "^4.0.0",
|
|
"webpack-cli": "^6.0.1"
|
|
},
|
|
"keywords": [
|
|
"editable",
|
|
"bootstrap5",
|
|
"jquery",
|
|
"in-place-editing",
|
|
"x-editable"
|
|
]
|
|
}
|