tycho-solver
Version:
Evolutionary computation and optimization library
52 lines • 1.17 kB
JSON
{
"name": "tycho-solver",
"version": "0.2.9",
"description": "Evolutionary computation and optimization library",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublish": "npm run build",
"test:watch": "jest --watch",
"sudoku-demo": "npm run build && node demos/sudoku.js",
"tsp-demo": "npm run build && node demos/tsp.js"
},
"keywords": [
"evolutionary computation",
"genetic algorithm",
"ga",
"evolutionary",
"optimization",
"metaheuristics",
"ec",
"typescript"
],
"author": "Ismel Martínez Díaz",
"license": "MPL-2.0",
"dependencies": {
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"canvas": "^3.1.2",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}