-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.49 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
{
"name": "hds-style-showcase",
"version": "0.0.2",
"description": "HDS style showcase, icons, and logos. Published at style.datasafe.dev.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/healthdatasafe/style.git"
},
"keywords": ["HealthDataSafe", "CSS", "Icons"],
"author": "Health Data Safe Foundation",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/healthdatasafe/style/issues"
},
"homepage": "https://github.com/healthdatasafe/style#readme",
"scripts": {
"build": "npm run copy && npm run minify",
"setup": "sh scripts/setup.sh",
"deploy": "bash scripts/deploy.sh",
"copy": "rm -rf dist/* && cp -R src/* dist/ && rm dist/input.css",
"css": "npx @tailwindcss/cli -i ./src/input.css -o ./src/hds.css --watch",
"dev": "npx concurrently --kill-others \"npm run css\" \"npm run serve\"",
"format": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"minify": "npx @tailwindcss/cli -i ./src/input.css -o ./dist/hds.min.css --minify",
"serve": "npx livereload ./src"
},
"dependencies": {
"hds-style": "git+https://github.com/healthdatasafe/style-package.git"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"concurrently": "^9.2.0",
"livereload": "^0.9.3",
"prettier": "3.6.2",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11"
}
}