-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "artmapify",
"version": "1.0.0",
"private": true,
"description": "Convert images to Minecraft ArtMap dye canvases.",
"license": "MIT",
"author": "melishy",
"type": "module",
"packageManager": "npm@11.10.1",
"engines": {
"node": ">=20"
},
"workspaces": [
"core",
"cli",
"web"
],
"scripts": {
"build": "npm run build:core && npm run build:cli && npm run build:web",
"build:core": "npm run build --workspace @artmapify/core",
"build:cli": "npm run build --workspace artmapify",
"build:web": "npm run build:core && npm run build --workspace web",
"dev:cli": "npm run dev --workspace artmapify",
"dev:web": "npm run dev --workspace web",
"typecheck": "npm run build:core && npm run typecheck --workspaces --if-present",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,json,md,css}\"",
"fetch-textures": "node scripts/fetch-textures.mjs"
},
"devDependencies": {
"next": "16.2.9",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0"
},
"overrides": {
"postcss": "^8.5.14"
}
}