-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "flowchart-creator",
"version": "1.4.0",
"private": true,
"description": "A personal, private flowchart editor built by @dev.mako for clear program logic, local projects, and useful code exports.",
"homepage": "https://nodesss.xyz/",
"repository": {
"type": "git",
"url": "git+https://github.com/devkyato/Nodes.git"
},
"bugs": {
"url": "https://github.com/devkyato/Nodes/issues"
},
"author": {
"name": "@dev.mako",
"url": "https://github.com/devkyato"
},
"type": "module",
"scripts": {
"styles": "tailwindcss -i src/flyon.css -o flyon.css --minify",
"start": "npm run styles && node scripts/serve.mjs",
"build": "npm run styles && node scripts/build.mjs",
"check": "node --check script.js",
"test": "npm run styles && node --check script.js && node tests/browser-smoke.mjs"
},
"engines": {
"node": ">=22"
},
"keywords": [
"flowchart",
"diagram",
"svg",
"flowchart-maker",
"diagram-editor",
"productivity",
"vanilla-javascript"
],
"license": "MIT",
"devDependencies": {
"@tailwindcss/cli": "^4.3.3",
"flyonui": "^2.4.1",
"tailwindcss": "^4.3.3"
}
}