opusdev/vector-similarity-api
1
1{2 "name": "side-channel-list",3 "version": "1.0.0",4 "description": "Store information about any JS value in a side channel, using a linked list",5 "main": "index.js",6 "exports": {7 ".": "./index.js",8 "./package.json": "./package.json"9 },10 "types": "./index.d.ts",11 "scripts": {12 "prepack": "npmignore --auto --commentLines=autogenerated",13 "prepublishOnly": "safe-publish-latest",14 "prepublish": "not-in-publish || npm run prepublishOnly",15 "prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",16 "lint": "eslint --ext=js,mjs .",17 "postlint": "tsc -p . && attw -P",18 "pretest": "npm run lint",19 "tests-only": "nyc tape 'test/**/*.js'",20 "test": "npm run tests-only",21 "posttest": "npx npm@'>= 10.2' audit --production",22 "version": "auto-changelog && git add CHANGELOG.md",23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""24 },25 "repository": {26 "type": "git",27 "url": "git+https://github.com/ljharb/side-channel-list.git"28 },29 "keywords": [],30 "author": "Jordan Harband <ljharb@gmail.com>",31 "funding": {32 "url": "https://github.com/sponsors/ljharb"33 },34 "license": "MIT",35 "bugs": {36 "url": "https://github.com/ljharb/side-channel-list/issues"37 },38 "homepage": "https://github.com/ljharb/side-channel-list#readme",39 "dependencies": {40 "es-errors": "^1.3.0",41 "object-inspect": "^1.13.3"42 },43 "devDependencies": {44 "@arethetypeswrong/cli": "^0.17.1",45 "@ljharb/eslint-config": "^21.1.1",46 "@ljharb/tsconfig": "^0.2.2",47 "@types/object-inspect": "^1.13.0",48 "@types/tape": "^5.6.5",49 "auto-changelog": "^2.5.0",50 "eclint": "^2.8.1",51 "encoding": "^0.1.13",52 "eslint": "=8.8.0",53 "evalmd": "^0.0.19",54 "in-publish": "^2.0.1",55 "npmignore": "^0.3.1",56 "nyc": "^10.3.2",57 "safe-publish-latest": "^2.0.0",58 "tape": "^5.9.0",59 "typescript": "next"60 },61 "auto-changelog": {62 "output": "CHANGELOG.md",63 "template": "keepachangelog",64 "unreleased": false,65 "commitLimit": false,66 "backfillLimit": false,67 "hideCredit": true68 },69 "publishConfig": {70 "ignore": [71 ".github/workflows"72 ]73 },74 "engines": {75 "node": ">= 0.4"76 }77}78 