UNPKG

933 BJSONView Raw
1{
2 "name": "dadojs",
3 "version": "0.1.3",
4 "description": "Lanzamiento de un dado al azar",
5 "type": "module",
6 "main": "./dist/cjs/index.js",
7 "module": "./dist/esm/index.js",
8 "author": "Marcelo Medina",
9 "license": "MIT",
10 "homepage": "https://github.com/marcelomedina10/dadojs",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/marcelomedina10/dadojs"
14 },
15 "scripts": {
16 "build-main": "tsc src/index.ts --outDir dist/cjs --module ES6",
17 "build-module": "tsc src/index.ts --outDir dist/esm",
18 "build": "npm run build-main && npm run build-module"
19 },
20 "keywords": [
21 "dado",
22 "dadojs",
23 "dado al azar",
24 "dadojs al azar",
25 "dice",
26 "dices",
27 "lucky",
28 "random"
29 ],
30 "files": [
31 "dist"
32 ],
33 "exports": {
34 ".": {
35 "import": "./dist/esm/index.js",
36 "require": "./dist/cjs/index.js"
37 }
38 },
39 "devDependencies": {
40 "typescript": "^5.0.2"
41 }
42}
\No newline at end of file