-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 798 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 798 Bytes
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
{
"name": "markov-strings",
"version": "3.0.4",
"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/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.8",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"dependencies": {
"es-toolkit": "^1.47.0"
}
}