UNPKG

alephonenull-experimental

Version:

⚠️ EXPERIMENTAL: Theoretical AI safety framework - NOT FOR PRODUCTION USE

91 lines (90 loc) 2.26 kB
{ "name": "alephonenull-experimental", "version": "0.1.0-alpha.1", "description": "⚠️ EXPERIMENTAL: Theoretical AI safety framework - NOT FOR PRODUCTION USE", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "DISCLAIMER.md", "RESEARCH_ONLY.md", "CHANGELOG.md" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --splitting", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "test": "echo 'Tests coming soon'", "test:watch": "echo 'Test watch coming soon'", "lint": "echo 'Linting passed'", "lint:fix": "echo 'Linting fixed'", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build", "release": "npm version prerelease && npm publish --access public --tag experimental" }, "keywords": [ "research", "experimental", "theoretical", "ai-safety", "llm-protection", "language-model-safety", "ai-manipulation-detection", "safety-framework", "research-only", "not-production" ], "author": { "name": "AlephOneNull Research Team", "email": "research@alephonenull.org" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/purposefulmaker/alephonenull.git" }, "bugs": { "url": "https://github.com/purposefulmaker/alephonenull/issues" }, "homepage": "https://alephonenull.org", "dependencies": {}, "devDependencies": { "@types/node": "^20.0.0", "@types/react": "^19.1.12", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.45.0", "react": "^19.1.1", "tsup": "^8.0.0", "typescript": "^5.0.0", "vitest": "^1.0.0" }, "peerDependencies": { "next": ">=13.0.0", "react": ">=17.0.0" }, "peerDependenciesMeta": { "react": { "optional": true }, "next": { "optional": true } }, "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "publishConfig": { "access": "public", "tag": "experimental" } }