-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 841 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
{
"name": "penkin.me",
"version": "1.0.0",
"description": "Personal blog.",
"main": "index.js",
"scripts": {
"build:dev": "npx @tailwindcss/cli -i ./src/css/main.css -o ./assets/css/main.min.css --watch",
"build:prod": "NODE_ENV=production npx @tailwindcss/cli -i ./src/css/main.css -o ./assets/css/main.min.css --minify"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/penkin/penkin.github.io.git"
},
"author": "Christopher Penkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/penkin/penkin.github.io/issues"
},
"homepage": "https://github.com/penkin/penkin.github.io#readme",
"dependencies": {
"@tailwindcss/cli": "^4.1.8",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12"
}
}