-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "@kamilmielnik/trie",
"version": "3.1.0",
"description": "Trie data structure implementation in TypeScript. Highly performant. No dependencies. Built for a Scrabble Solver.",
"keywords": [
"trie",
"data",
"structure",
"algorithm",
"scrabble",
"solver",
"typescript",
"prefix",
"tree"
],
"engines": {
"node": ">=20"
},
"main": "./build/index.js",
"license": "MIT",
"author": {
"name": "Kamil Mielnik",
"email": "kamil@kamilmielnik.com",
"url": "https://kamilmielnik.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamilmielnik/trie.git"
},
"bugs": {
"url": "https://github.com/kamilmielnik/trie/issues"
},
"homepage": "https://github.com/kamilmielnik/trie#readme",
"files": [
"build/**"
],
"types": "./build/index.d.ts",
"np": {
"yarn": false
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf build coverage docs",
"build": "tsc --project .",
"build:docs": "typedoc",
"postbuild": "npm run build:docs",
"prettier": "prettier --list-different './src/**/*.{js,ts}'",
"prettier:fix": "npm run prettier -- --write",
"prebuild": "npm run clean",
"prerelease": "npm run test && npm run build && npm run build:docs",
"release": "np",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"np": "^10.0.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "^5.6.3"
}
}