-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.38 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
53
54
55
56
57
58
{
"name": "@theblindhawk/roulette",
"version": "3.1.0",
"description": "a thoroughly customizable roulette wheel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/coverage-v8": "^1.2.2",
"dprint": "^0.45.0",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitest": "^1.4.0"
},
"scripts": {
"dev": "vite",
"test": "vitest",
"test-coverage": "vitest --coverage",
"lint": "run-p lint:*",
"lint:eslint": "eslint src",
"lint:tsc": "tsc --noEmit",
"format": "dprint fmt '**/*.{js,ts,tsx,json}'",
"format-check": "dprint check '**/*.{js,ts,tsx,json}'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBlindHawk/Roulette.git"
},
"keywords": [
"roulette",
"wheel",
"spin",
"random",
"probability",
"customize"
],
"author": "TheBlindHawk",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bugs": {
"url": "https://github.com/TheBlindHawk/Roulette/issues"
},
"homepage": "https://github.com/TheBlindHawk/Roulette#readme"
}