chore: initialize the project

This commit is contained in:
owaisahmed5300 2025-08-11 23:33:11 +05:00
commit 2c543b716c
31 changed files with 6135 additions and 0 deletions

32
package.json Normal file
View file

@ -0,0 +1,32 @@
{
"name": "wp-settings-framework",
"description": "A modern, fluent, and object-oriented framework for creating powerful WordPress admin settings pages.",
"license": "MIT",
"keywords": [
"wordpress",
"settings",
"options"
],
"version": "0.1.0",
"author": "WPTechnix <developers@wptechnix.com>",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^10.0.1",
"husky": "^9.1.7",
"release-it": "^19.0.4"
},
"directories": {
"test": "tests"
},
"scripts": {
"prepare": "husky",
"release": "release-it"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}