-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 KB
/
package.json
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
{
"name": "qlevens",
"version": "1.0.3",
"description": "A lightning-fast implementation of the Levenshtein distance algorithm. Written in AssemblyScript, compiled to WebAssembly, and optimized for speed.",
"main": "build/release.js",
"scripts": {
"prepublishOnly": "npm run asbuild:release",
"test": "node tests",
"asbuild:debug": "asc src/index.ts -b build/debug.wasm -t build/debug.wat --sourceMap --debug",
"asbuild:release": "asc src/index.ts -b build/release.wasm -t build/release.wat --sourceMap -O3",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"start": "npx serve ."
},
"author": "hexrw <hexrw@proton.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:hexrw/qlevens.git"
},
"keywords": [
"levenshtein",
"levenshtein-wasm",
"levenshtein-distance",
"distance",
"algorithm",
"assemblyscript",
"wasm",
"webassembly",
"string",
"compare",
"fast",
"fastest",
"match",
"difference",
"text"
],
"bugs": {
"url": "https://github.com/hexrw/qlevens/issues"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"devDependencies": {
"assemblyscript": "^0.21.3"
}
}