-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "marisa-trie-wasm",
"version": "0.0.5",
"author": "Patrick Gaskin",
"license": "MIT AND (BSD-2-Clause OR LGPL-2.1-or-later)",
"description": "marisa-trie browser/node wasm bindings",
"keywords": [
"marisa-trie",
"libmarisa",
"trie",
"bindings",
"wasm"
],
"homepage": "https://github.com/pgaskin/marisa.js",
"bugs": {
"url": "https://github.com/pgaskin/marisa.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgaskin/marisa.js.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node src/fetch.js github.com/pgaskin/go-marisa v1.0.2 h1:m8MsdiHsWFl5FeaIhcQU8ubejQyMSVakE/7uBYLOeMY= && tsc && esbuild --bundle --format=esm --platform=neutral --tsconfig=tsconfig.json --target=es2022 --sourcemap --loader:.wasm=file --outfile=dist/index.js --external:node:* src/index.ts",
"test": "node --test",
"lint": "eslint"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"esbuild-wasm": "0.27.1",
"eslint": "9.39.1",
"eslint-plugin-compat": "6.0.2",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0"
},
"engines": {
"node": ">= 22"
},
"browserslist": [
"defaults and fully supports es6-module",
"chrome >= 90",
"firefox >= 90",
"edge >= 90",
"opera >= 75",
"safari >= 15.1",
"ios >= 14.8",
"node >= 22"
]
}