find-partial-anagrams
Version:
Takes a set of letters and returns all the words in a given word list that can be made using all or a subset of those letters.
53 lines (52 loc) • 1.17 kB
JSON
{
"name": "find-partial-anagrams",
"version": "0.3.0",
"description": "Takes a set of letters and returns all the words in a given word list that can be made using all or a subset of those letters.",
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./word-list": {
"import": "./dist/word-list.js",
"require": "./dist/word-list.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"benchmark": "vitest bench",
"prepublishOnly": "npm run build && vitest run"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@vitest/coverage-c8": "^0.25.3",
"jsr": "^0.13.2",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.3"
},
"author": "Dallas Hoffman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DallasHoff/find-partial-anagrams"
},
"keywords": [
"anagram-solver",
"anagram",
"word",
"word-game",
"letters",
"scrabble"
]
}