-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "unfair-dice",
"version": "1.0.0",
"description": "Dice that protects you from time travelers!",
"keywords": [
"dice",
"unfair",
"fair",
"random",
"coin",
"flip",
"roll"
],
"bugs": {
"url": "https://github.com/phil-r/unfair-dice/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phil-r/unfair-dice.git"
},
"homepage": "https://github.com/phil-r/unfair-dice#readme",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "bun test --randomize",
"build": "tsc -p tsconfig.cjs.json && mv dist/cjs/index.js dist/index.cjs && rm -rf dist/cjs && tsc",
"typecheck": "tsc --noEmit"
},
"author": "Phil Rukin <philipp@rukin.me> (https://rukin.me)",
"license": "MIT",
"engines": {
"bun": "^1.2.2"
},
"packageManager": "bun@1.2.2",
"devDependencies": {
"@types/bun": "^1.2.22",
"typescript": "^5.9.2"
}
}