-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "small-world",
"version": "1.6.0",
"description": "A Three.js terrarium that grows a tiny floating-island world — biome, terrain, flora, creatures, birds, and weather — from a 16-bit seed. Cute and painterly by design.",
"main": "main.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "vite --port 2001",
"build": "vite build",
"preview": "vite preview --port 2001",
"lint": "eslint main.js src/",
"start": "vite --host 0.0.0.0 --port 2001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulrobello/small-world.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/paulrobello/small-world/issues"
},
"homepage": "https://github.com/paulrobello/small-world#readme",
"dependencies": {
"simplex-noise": "^4.0.3",
"three": "^0.185.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"vite": "^8.1.3"
}
}