-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·54 lines (54 loc) · 1.29 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
{
"name": "kurwov",
"version": "4.0.1",
"description": "The fastest Markov Chain library for JavaScript",
"scripts": {
"build": "tsup",
"check": "biome check .",
"check:apply": "biome check . --apply-unsafe",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "node --import tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"author": "xiboon",
"license": "ISC",
"keywords": [
"markov",
"markovchain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xiboon/kurwov.git"
},
"bugs": {
"url": "https://github.com/xiboon/kurwov/issues"
},
"homepage": "https://github.com/xiboon/kurwov#readme",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.4.2",
"markov-generator": "^1.2.3",
"markov-strings": "^3.0.1",
"markov-typescript": "^1.1.0",
"tinybench": "^2.9.0",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"provenance": true
},
"packageManager": "[email protected]"
}