-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "aid-bundler",
"version": "1.3.1",
"description": "A small utility for bundling multi-file AI Dungeon scripts.",
"main": "index.js",
"bin": {
"aid-bundler": "cmd.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard",
"require-self": "require-self",
"build-example": "require-self && node cmd.js example/pipeline/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDudeFromCI/aid-bundler.git"
},
"keywords": [
"ai",
"ai",
"dungeon",
"aid",
"utility",
"bundler"
],
"author": "TheDudeFromCI",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDudeFromCI/aid-bundler/issues"
},
"homepage": "https://github.com/TheDudeFromCI/aid-bundler#readme",
"dependencies": {
"adm-zip": "^0.4.16",
"shebang-loader": "^0.0.1",
"webpack": "^5.37.0"
},
"devDependencies": {
"@types/webpack": "^4.41.0",
"require-self": "^0.2.3",
"standard": "^16.0.1"
},
"standard": {
"ignore": [
"lib/**"
]
}
}