-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.82 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.82 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "fail2",
"version": "1.0.1",
"description": "JavaScript Canvas2D | 100% Prompt Driven Development (GPT) ",
"keywords": [
"ai",
"artificial intelligence",
"javascript",
"gpt",
"gpt-4",
"gpt-35-turbo"
],
"license": "AGPL",
"author": {
"name": "Tim Pietrusky",
"url": "https://github.com/NERDDISCO/"
},
"contributors": [
{
"name": "Gregor Adams",
"url": "https://github.com/pixelass/"
},
{
"name": "Dominik Hautau",
"url": "https://github.com/doemser/"
}
],
"type": "module",
"main": "n.a.",
"scripts": {
"dev": "webpack serve --config ./config/webpack.config.dev.js",
"prepare": "husky install",
"spj": "npx sort-package-json",
"toc": "npx markdown-toc README.md -i"
},
"lint-staged": {
"*.js": [
"npx prettier --write"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
],
"*.md": [
"npx prettier --write"
],
"README.md": [
"npx markdown-toc -i"
]
},
"dependencies": {
"dotenv": "16.0.3",
"globby": "13.1.3",
"meow": "11.0.0",
"openai": "3.2.1",
"ora": "6.3.0",
"prettier": "2.8.7"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"style-loader": "^3.3.2",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"optionalDependencies": {
"cannon-es": "0.20.0",
"color": "4.2.3",
"complex.js": "2.1.1",
"dat.gui": "0.7.9",
"howler": "2.2.3",
"noisejs": "2.1.0",
"p2-es": "0.7.3",
"p5": "1.6.0",
"pixi.js": "6.5.9",
"simplex-noise": "3.0.1",
"three": "0.133.0",
"tone": "14.7.77"
},
"engines": {
"node": ">= 18"
}
}