1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-08-30 17:20:17 +02:00

add index.d.ts to package.json

This commit is contained in:
Thomas Wilkerling
2024-01-09 21:30:37 +01:00
parent afd75f742f
commit 12f48e64f7

View File

@@ -2,7 +2,7 @@
"public": true, "public": true,
"preferGlobal": false, "preferGlobal": false,
"name": "flexsearch", "name": "flexsearch",
"version": "0.7.41", "version": "0.7.42",
"description": "Next-Generation full text search library with zero dependencies.", "description": "Next-Generation full text search library with zero dependencies.",
"homepage": "https://github.com/nextapps-de/flexsearch/", "homepage": "https://github.com/nextapps-de/flexsearch/",
"author": "Thomas Wilkerling", "author": "Thomas Wilkerling",
@@ -33,6 +33,7 @@
"dist/flexsearch.bundle.min.js": "dist/flexsearch.bundle.min.js", "dist/flexsearch.bundle.min.js": "dist/flexsearch.bundle.min.js",
"dist/flexsearch.bundle.module.min.js": "dist/flexsearch.bundle.module.min.js" "dist/flexsearch.bundle.module.min.js": "dist/flexsearch.bundle.module.min.js"
}, },
"types": "./index.d.ts",
"scripts": { "scripts": {
"build": "npm run copy && npm run build:bundle", "build": "npm run copy && npm run build:bundle",
"build:bundle": "node task/build RELEASE=bundle DEBUG=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false", "build:bundle": "node task/build RELEASE=bundle DEBUG=false SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_STORE=true SUPPORT_TAGS=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_DOCUMENT=true POLYFILL=false",