-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 871 Bytes
/
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
{
"name": "markov-strings",
"version": "3.0.2",
"description": "A Markov string generator",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "vitest run --coverage"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/scambier/markov-strings"
},
"keywords": [
"markov",
"string",
"chain",
"procedural",
"generation",
"text"
],
"author": "scambier",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.4",
"@vitest/coverage-v8": "2.1.8",
"coveralls": "^3.1.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}