-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
51 lines (51 loc) · 1.16 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
51
{
"name": "cspell-trie",
"version": "8.6.0",
"description": "Trie Data Structure reader for cspell",
"type": "module",
"sideEffects": false,
"bin": {
"cspell-trie": "bin.js"
},
"files": [
"bin.js",
"dist",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/*.test.*",
"!**/*.spec.*",
"!**/*.map"
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -p .",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test-watch": "vitest",
"test": "vitest run",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-trie"
},
"keywords": [
"trie",
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-trie"
},
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
"dependencies": {
"commander": "^12.0.0",
"cspell-trie-lib": "workspace:*",
"gensequence": "^7.0.0"
},
"engines": {
"node": ">=18"
}
}