-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"name": "enerby.dev",
"version": "1.0.0",
"description": "Personal portfolio and blog built with **Dioxus** and **100% Rust**.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"tailwind:build": "npx @tailwindcss/cli -i ./input.css -o ./assets/tailwind.css --minify",
"tailwind:watch": "npx @tailwindcss/cli -i ./input.css -o ./assets/tailwind.css --watch",
"dev": "npm run tailwind:build && dx serve",
"dev:watch": "npm run tailwind:watch & dx serve",
"build": "npm run tailwind:build && dx build --release",
"test": "cargo test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enerBydev/enerby-dev.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/enerBydev/enerby-dev/issues"
},
"homepage": "https://github.com/enerBydev/enerby-dev#readme",
"devDependencies": {
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/line-clamp": "^0.4.4",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18"
}
}