-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.99 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
76
77
78
79
{
"name": "@kamilmielnik/trie",
"version": "5.0.0-beta.1",
"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": ">=22"
},
"type": "module",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js",
"types": "./build/esm/index.d.ts"
}
},
"license": "MIT",
"author": {
"name": "Kamil Mielnik",
"email": "[email protected]",
"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/**"
],
"np": {
"yarn": false
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --project . && tsc --project tsconfig.cjs.json",
"build:docs": "typedoc",
"clean": "rimraf build coverage docs",
"postbuild": "npm run build:docs",
"prebuild": "npm run clean",
"prerelease": "npm run test && npm run build && npm run build:docs",
"prettier": "prettier --list-different './src/**/*.{js,ts}'",
"prettier:fix": "npm run prettier -- --write",
"release": "np",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"np": "^10.2.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3"
}
}