-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "xd-crossword-monorepo",
"private": true,
"version": "13.1.0",
"description": "Tools for taking different crossword file formats and converting them to xd, and for converting an xd file to useful JSON",
"scripts": {
"build": "yarn workspaces foreach -At run build",
"test": "vitest",
"docs": "md-magic",
"type-check": "yarn workspaces foreach -A run type-check"
},
"workspaces": [
"packages/*",
"website"
],
"repository": {
"type": "git",
"url": "git+https://github.com/puzzmo-com/xd-crossword-tools.git"
},
"keywords": [],
"author": "Orta Therox & Puzzmo contributors",
"license": "ISC",
"bugs": {
"url": "https://github.com/puzzmo-com/xd-crossword-tools/issues"
},
"homepage": "https://github.com/puzzmo-com/xd-crossword-tools#readme",
"prettier": {
"printWidth": 140,
"semi": false
},
"resolutions": {
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/node": "^18.11.18",
"markdown-magic": "^2.6.0",
"tsup": "^8.1.0",
"typescript": "^5.6.3",
"vitest": "^3.1.3"
},
"packageManager": "yarn@4.9.1"
}