shell bypass 403
{
"name": "trie-search",
"author": "Joshua Jung <joshua.p.jung@gmail.com>",
"license": "MIT",
"description": "A trie implementation that maps keys to objects for rapid retrieval by phrases. Most common use will be for typeahead searches.",
"version": "1.4.2",
"main": "index.js",
"types": "index.d.ts",
"url": "https://github.com/joshjung/trie-search",
"homepage": "https://github.com/joshjung/trie-search",
"email": "joshua.p.jung@gmail.com",
"scripts": {
"test": "jest test/trie-search.test.js",
"release:major": "npm version major && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:patch": "npm version patch && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/joshjung/trie-search.git"
},
"files": [
"src",
"index.d.ts",
"index.js"
],
"keywords": [
"trie",
"search",
"typeahead",
"type",
"ahead",
"hash",
"map",
"hashtable"
],
"dependencies": {
"hasharray": "^1.1.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.5"
}
}