-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fts5-sql-bundle",
"version": "1.0.2",
"description": "SQL.js with FTS5 full-text search support - a custom build optimized for Node.js and browser environments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/sql-wasm.wasm": "./dist/sql-wasm.wasm",
"./dist/sql-wasm.js": "./dist/sql-wasm.js"
},
"scripts": {
"build": "npm run build:sql && npm run build:ts && npm run build:package",
"build:sql": "docker run --rm -v $(pwd):/workspace -w /workspace/sql.js emscripten/emsdk:3.1.28 make optimized",
"build:ts": "tsc",
"build:package": "node scripts/build-package.js",
"build:dev": "npm run build:ts && npm run build:package",
"prepare": "npm run build:dev || npm run build",
"test": "node test/test.js",
"test:ts": "npm run build:ts && node dist/test/typescript-test.js",
"clean": "rm -rf dist/ sql.js/dist/ sql.js/out/",
"type-check": "tsc --noEmit",
"dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimRl/fts5-sql-bundle.git"
},
"keywords": [
"sqlite",
"sql.js",
"fts5",
"full-text-search",
"wasm",
"database",
"search",
"indexing"
],
"author": "TimRl",
"license": "ISC",
"bugs": {
"url": "https://github.com/TimRl/fts5-sql-bundle/issues"
},
"homepage": "https://github.com/TimRl/fts5-sql-bundle#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}