chore: initial commit

This commit is contained in:
Helloyunho
2025-12-20 12:28:28 +09:00
commit 13c6d5bc7d
6 changed files with 79 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# macOS related thing (i dont like it)
.DS_Store
# Node.js dependencies
node_modules
# Node.js package lock files
package-lock.json
yarn.lock
pnpm-lock.yaml
bun.lock
bun.lockb
# Build output
dist
+3
View File
@@ -0,0 +1,3 @@
# vue-after-free
A PlayStation Vue exploit.
+15
View File
@@ -0,0 +1,15 @@
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";
import neostandard from 'neostandard'
export default defineConfig([
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } },
{ files: ["**/*.js"], languageOptions: { sourceType: "script" } },
tseslint.configs.recommended,
neostandard({
ts: true,
env: ['browser', 'es2025'],
})
]);
+19
View File
@@ -0,0 +1,19 @@
{
"name": "vue-after-free",
"module": "index.ts",
"type": "module",
"private": true,
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"typescript-eslint": "^8.50.0"
},
"dependencies": {
"jiti": "^2.6.1",
"neostandard": "^0.12.2"
}
}
View File
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ES2015"],
"target": "ES2015",
"module": "Preserve",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"outDir": "./dist",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}