-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 727 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 727 Bytes
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
{
"name": "sand-table-pattern-maker",
"version": "0.3.0",
"description": "A web application for creating patterns to draw in a sand table using (G-code and THR files for Sisyphus tables)",
"author": "Mark Roland",
"license": "",
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint ./src/js"
},
"bin": {
"sand-pattern": "./sand-pattern.mjs"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"vite": "^6.3.2"
},
"dependencies": {
"@markroland/path-helper": "^1.37.0",
"p5": "^2.0.0",
"minimist": "^1.2.5"
}
}