-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.25 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
49
50
51
52
{
"name": "space-scene-2d",
"version": "1.0.3",
"description": "Procedural generator for 2D space scenes.",
"keywords": [
"2D",
"space",
"nebula",
"star",
"procedural"
],
"author": {
"name": "Rye Terrell",
"email": "[email protected]",
"url": "https://wwwtyro.net"
},
"homepage": "https://github.com/wwwtyro/space-scene-2d",
"repository": {
"type": "git",
"url": "https://github.com/wwwtyro/space-scene-2d.git"
},
"license": "Unlicense",
"files": [
"lib"
],
"main": "./lib/index.umd.js",
"module": "./lib/index.es.js",
"types": "./lib/index",
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.umd.js"
}
},
"scripts": {
"dev": "vite --config vite.utility-config.js --host 0.0.0.0",
"build-utility": "tsc && vite build --config vite.utility-config.js",
"build-lib": "tsc && vite build --config vite.lib-config.js",
"build": "npm run clean && npm run build-lib && npm run build-utility",
"clean": "rm -rf lib docs"
},
"devDependencies": {
"@tweakpane/core": "^1.1.0",
"tweakpane": "^3.1.0",
"typescript": "^4.5.4",
"vite": "^2.9.9"
},
"dependencies": {
"alea": "^1.0.1",
"regl": "^2.1.0"
}
}