@clplab/clp-typescript
Version:
Crystalline Lattice Protocol - Next-generation post-quantum cryptography library with comprehensive multi-layer security (TypeScript)
117 lines (116 loc) • 3.87 kB
JSON
{
"name": "@clplab/clp-typescript",
"version": "1.0.2",
"description": "Crystalline Lattice Protocol - Next-generation post-quantum cryptography library with comprehensive multi-layer security (TypeScript)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup -c",
"build:dev": "tsc --watch",
"build:clean": "rm -rf dist && npm run build",
"test": "jest --verbose --maxWorkers=1",
"test:watch": "jest --watch --maxWorkers=1",
"test:coverage": "jest --coverage --maxWorkers=1",
"test:dev": "jest --config jest.config.dev.json --maxWorkers=1",
"test:dev:watch": "jest --config jest.config.dev.json --watch --maxWorkers=1",
"test:fast": "jest --config jest.config.dev.json --bail --maxWorkers=1",
"test:core": "jest --testPathPattern=clp-core --maxWorkers=1",
"test:math": "jest --testPathPattern=math --maxWorkers=1",
"test:config": "jest --testPathPattern=config --maxWorkers=1",
"test:errors": "jest --testPathPattern=errors --maxWorkers=1",
"test:utils": "jest --testPathPattern=utils --maxWorkers=1",
"test:layers": "jest --testPathPattern='(graph|polynomial|hybrid|lattice)' --maxWorkers=1",
"test:crypto": "jest --testPathPattern='(math|graph|polynomial|hybrid|lattice)' --maxWorkers=1",
"test:integration": "jest --testPathPattern=integration --maxWorkers=1",
"test:ci": "jest --ci --coverage --maxWorkers=1 --passWithNoTests",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"docs": "typedoc src/index.ts",
"validate": "npm run lint && npm run format:check && npm run test",
"prepublishOnly": "npm run build:clean",
"benchmark": "node -e \"console.log('Running CLP benchmarks...'); const { CLPUtils } = require('./dist/index.js'); CLPUtils.benchmark().then(r => console.log('Benchmark complete:', r));\"",
"demo": "node demo.js"
},
"keywords": [
"cryptography",
"post-quantum",
"lattice-based",
"encryption",
"security",
"typescript",
"quantum-resistant",
"multi-layer",
"polynomial",
"graph-theory",
"hybrid-encryption",
"clp",
"crystalline"
],
"author": "CLP Research Collective <research@clplab.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clplab/clp-typescript.git"
},
"bugs": {
"url": "https://github.com/clplab/clp-typescript/issues"
},
"homepage": "https://clplab.org/typescript",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/clplab"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.2",
"tslib": "^2.8.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"files": [
"dist",
"README.md",
"WHITEPAPER.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"node >= 18"
]
}