-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.53 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "5dice",
"version": "3.0.4",
"description": "Terminal dice game. In no way related to Yahtzee ;-)",
"keywords": [
"game"
],
"bugs": {
"url": "https://github.com/will-stone/5dice/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/will-stone/5dice"
},
"license": "MIT",
"author": {
"name": "Will Stone",
"email": "hello@wstone.uk",
"url": "https://wstone.uk"
},
"type": "module",
"bin": {
"5dice": "dist/cli.js"
},
"files": [
"dist/*",
"screenshot.png"
],
"scripts": {
"build": "tsup source/cli.tsx --format esm --target node22",
"lint": "eslint .",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"release": "release-it",
"start": "pnpm build --watch --onSuccess \"node ./dist/cli.js\"",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"prettier": "@will-stone/prettier-config",
"overrides": {
"eslint": "$eslint"
},
"dependencies": {
"2n8": "^0.18.1",
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"ink": "^5.1.0",
"ink-divider": "^4.1.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"open": "^10.1.0",
"picocolors": "^1.0.1",
"react": "^18.3.1",
"tings": "^9.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@commits-with-character/conventional-changelog-preset": "^2.0.0",
"@release-it/conventional-changelog": "^10.0.0",
"@types/ink-gradient": "^2.0.4",
"@types/jsonfile": "^6.1.4",
"@types/lodash": "^4.17.4",
"@types/node": "^22.13.13",
"@types/react": "^18.3.3",
"@vitest/eslint-plugin": "^1.3.4",
"@will-stone/eslint-config": "^21.2.0",
"@will-stone/prettier-config": "^11.0.1",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"release-it": "^18.1.2",
"tsup": "^8.0.2",
"typescript": "^5.7.2",
"vite": "^6.2.3",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "@commits-with-character/preset"
},
"infile": "CHANGELOG.md",
"header": "# Changelog"
}
}
}
}