-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "bead-grid-studio",
"version": "1.2.0",
"private": true,
"description": "Topology-aware, local-first fuse-bead pattern generator with printable color codes and material counts.",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://zwhy149.github.io/bead-grid-studio/",
"repository": {
"type": "git",
"url": "git+https://github.com/zwhy149/bead-grid-studio.git"
},
"bugs": {
"url": "https://github.com/zwhy149/bead-grid-studio/issues"
},
"keywords": [
"bead-pattern",
"fuse-beads",
"pindou",
"pindou-pattern",
"bead-grid-studio",
"pixel-art",
"image-quantization",
"local-first",
"pwa"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"setup": "npm install && playwright install chromium firefox webkit",
"dev": "vite",
"build": "vite build && node scripts/build-portable.mjs",
"preview": "vite preview",
"capture:docs": "npm run build && node scripts/capture-docs.mjs",
"metrics": "node scripts/repo-metrics.mjs",
"check": "node scripts/check-source.mjs && node scripts/check-palette.mjs",
"test:unit": "node --test tests/unit/*.test.js",
"test:e2e": "npm run build && playwright test",
"test:e2e:ci": "npm run build && playwright test --project=desktop-chromium --project=mobile-chromium",
"test": "npm run check && npm run test:unit && npm run test:e2e",
"qa": "npm test",
"qa:ci": "npm run check && npm run test:unit && npm run test:e2e:ci"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"vite": "8.2.2"
}
}