-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 840 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 840 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
{
"name": "fondueflow",
"version": "0.3.2",
"engines": {
"node": ">=24.14.1"
},
"description": "Boilerplate code framework for the Webflow website.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "bun build ./src/styles/fondueflow.css --outdir ./dist/styles --minify",
"build:js": "bun build ./src/scripts/fondueflow.js --outdir ./dist/scripts --minify",
"build": "npm run build:css && npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frontify/fondueflow.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/Frontify/fondueflow/issues"
},
"homepage": "https://github.com/Frontify/fondueflow#readme",
"devDependencies": {
"bun": "^1.3.11"
}
}