-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "nat20",
"version": "1.2.0",
"description": "A package for simulating dice rolls",
"author": "Tom Watkins",
"homepage": "https://github.com/tomwatkins1994/nat20#readme",
"repository": {
"type": "git",
"url": "https://github.com/tomwatkins1994/nat20.git"
},
"license": "MIT",
"keywords": [
"Dice",
"Roll",
"RPG"
],
"bugs": {
"url": "https://github.com/tomwatkins1994/nat20/issues"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"files": [
"package.json",
"readme.md",
"dist/*"
],
"scripts": {
"dev": "vitest",
"ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run lint && pnpm run test",
"build": "tsc",
"test": "vitest run",
"test:ui": "vitest run --ui",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"check-format": "biome format ./src",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "pnpm run ci"
},
"dependencies": {
"mathjs": "^13.2.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.0",
"@vitest/ui": "^2.1.4",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}