rpg-event-generator 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +430 -0
- package/dist/index.js +1144 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rpg-event-generator",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Procedural RPG event generation system for games",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/",
|
|
8
|
+
"README.md",
|
|
9
|
+
"LICENSE"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "jest",
|
|
13
|
+
"build": "babel src --out-dir dist",
|
|
14
|
+
"prepublishOnly": "npm run build"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"rpg",
|
|
18
|
+
"procedural-generation",
|
|
19
|
+
"events",
|
|
20
|
+
"random",
|
|
21
|
+
"game-development",
|
|
22
|
+
"markov-chains",
|
|
23
|
+
"game-dev",
|
|
24
|
+
"narrative",
|
|
25
|
+
"storytelling",
|
|
26
|
+
"fantasy",
|
|
27
|
+
"medieval",
|
|
28
|
+
"adventure",
|
|
29
|
+
"quest",
|
|
30
|
+
"character-development",
|
|
31
|
+
"world-building",
|
|
32
|
+
"procedural-content",
|
|
33
|
+
"event-system",
|
|
34
|
+
"role-playing",
|
|
35
|
+
"game-mechanics",
|
|
36
|
+
"content-generation",
|
|
37
|
+
"story-generator",
|
|
38
|
+
"rpg-tools",
|
|
39
|
+
"indie-games",
|
|
40
|
+
"game-jam",
|
|
41
|
+
"javascript-games",
|
|
42
|
+
"node-game",
|
|
43
|
+
"text-generation",
|
|
44
|
+
"nlp"
|
|
45
|
+
],
|
|
46
|
+
"author": "decept1kon",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"chance": "^1.1.13"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@babel/cli": "^7.23.0",
|
|
53
|
+
"@babel/core": "^7.23.0",
|
|
54
|
+
"@babel/preset-env": "^7.23.0",
|
|
55
|
+
"jest": "^29.7.0",
|
|
56
|
+
"jest-environment-node": "^29.7.0"
|
|
57
|
+
},
|
|
58
|
+
"jest": {
|
|
59
|
+
"testEnvironment": "node",
|
|
60
|
+
"transform": {
|
|
61
|
+
"^.+\\.(js|jsx)$": "babel-jest"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"repository": {
|
|
65
|
+
"type": "git",
|
|
66
|
+
"url": "https://github.com/decept1kon/rpg-event-generator.git"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=14.0.0"
|
|
70
|
+
}
|
|
71
|
+
}
|