-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "rung",
"version": "0.14.0",
"type": "module",
"description": "A randomness toolkit for browser-based game development, simulations and generative methods.",
"repository": "[email protected]:maetl/rung",
"author": "Mark Rickerby",
"license": "MIT",
"scripts": {
"prepublish": "npm run build",
"build": "npm run build:bundle ; npm run build:compile",
"build:bundle": "rollup -c",
"build:compile": "tsc",
"test": "ava --verbose"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"ava": "^4.1.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.2"
},
"module": "src/rung.js",
"main": "dist/rung.bundle.cjs",
"types": "types/rung.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./src/rung.js",
"require": "./dist/rung.bundle.cjs"
},
"./random": "./src/random.js",
"./algorithms/": "./src/algorithms/",
"./types/": "./types/"
},
"files": [
"dist",
"src",
"types",
"README.md",
"LICENSE"
]
}