chore: add EVERYTHING

This commit is contained in:
2026-03-22 17:43:55 -05:00
parent 5ea7bb8f95
commit 91fa272fe6
11 changed files with 3715 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
node_modules
daemon
+1
View File
@@ -0,0 +1 @@
_
+2
View File
@@ -0,0 +1,2 @@
node_modules/
daemon
+8
View File
@@ -0,0 +1,8 @@
module.exports = {
trailingComma: "es5",
tabWidth: 2,
semi: true,
singleQuote: false,
arrowParens: "always",
useTabs: false,
};
+9
View File
@@ -0,0 +1,9 @@
nodeLinker: node-modules
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
yarnPath: .yarn/releases/yarn-3.2.0.cjs
Submodule
+1
Submodule api added at 2f17f24b3b
+3625
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"scope-enum": [2, "always", ["core", "global", "api", "ui", "dalpuri"]],
},
};
Submodule
+1
Submodule dalpuri added at e2b7c25b92
+59
View File
@@ -0,0 +1,59 @@
{
"name": "optima",
"version": "0.1.0",
"private": true,
"workspaces": [
"api",
"ui",
"dalpuri"
],
"scripts": {
"commit": "cz",
"commit:signed": "cz -S",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HorizonStackSoftware/optima.git"
},
"license": "GPL-3.0",
"homepage": "https://github.com/HorizonStackSoftware/optima#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.12.2",
"commitizen": "^4.2.3",
"commitlint": "~12.1.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"next": "^12.0.2",
"typescript": "^4.6.3"
},
"resolutions": {
"@types/react": "17.0.2",
"next": "12.0.2"
}
}
Submodule
+1
Submodule ui added at 005e939a54