-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cspell-trie-lib",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "8.17.4",
"description": "Trie Data Structure to support cspell.",
"type": "module",
"sideEffects": false,
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist",
"!**/__mocks__",
"!**/*.map",
"!**/*.perf.*",
"!**/*.spec.*",
"!**/*.test.*",
"!**/*.tsbuildInfo",
"!**/perf/**",
"!**/test/**"
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "pnpm run build:lib && pnpm run build:api",
"build:lib": "tsup-node",
"build:api": "shx cp dist/index.d.ts api/api.d.ts",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:perf": "pnpm test:perf:js --all",
"test:perf:ts": "NODE_ENV=production NODE_OPTIONS=--import=@swc-node/register/esm-register insight --file \"**/*.perf.{mts,ts}\" -t 500",
"test:perf:js": "NODE_ENV=production insight -t 500",
"test:perf:prof": "NODE_ENV=production node --cpu-prof ../../node_modules/perf-insight/bin.mjs -t 1000",
"perf": "pnpm test:perf",
"test": "vitest run",
"test:update-snapshot": "vitest run -u",
"watch": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-trie-lib"
},
"keywords": [
"trie",
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-trie"
},
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-trie-lib#readme",
"dependencies": {
"@cspell/cspell-pipe": "workspace:*",
"@cspell/cspell-types": "workspace:*",
"gensequence": "^7.0.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@cspell/dict-en_us": "^4.3.32",
"@cspell/dict-es-es": "^3.0.3",
"@cspell/dict-nl-nl": "^2.3.3",
"import-meta-resolve": "^4.1.0"
}
}