@govtech-bb/styles 1.0.0-alpha.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@govtech-bb/styles",
3
+ "version": "1.0.0-alpha.16",
4
+ "description": "CSS-first design system styles for the Government of Barbados Design System",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "README.md"
9
+ ],
10
+ "exports": {
11
+ ".": "./dist/styles.css",
12
+ "./assets/*": "./dist/assets/*",
13
+ "./package.json": "./package.json"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public",
17
+ "registry": "https://registry.npmjs.org"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/govtech-bb/design-system.git",
22
+ "directory": "packages/styles"
23
+ },
24
+ "homepage": "https://govtech-bb.github.io/design-system/",
25
+ "license": "MIT",
26
+ "devDependencies": {
27
+ "@tailwindcss/cli": "^4.2.2",
28
+ "browser-sync": "^3.0.4",
29
+ "concurrently": "^9.2.1",
30
+ "tailwindcss": "^4.2.2"
31
+ },
32
+ "scripts": {
33
+ "build": "tailwindcss -i ./src/build.css -o ./dist/styles.css --optimize && mkdir -p ./dist/assets/fonts ./dist/assets/images && cp ./src/assets/fonts/*.woff2 ./dist/assets/fonts/ && cp -R ./src/assets/images/. ./dist/assets/images/",
34
+ "build:llm": "node scripts/build-llm.mjs",
35
+ "dev:css": "tailwindcss -i ./src/build.css -o ./src/dist.css --watch",
36
+ "serve": "browser-sync start --server ./src --files 'src/dist.css,src/*.html' --index home.html --no-open",
37
+ "dev": "concurrently \"pnpm dev:css\" \"pnpm serve\""
38
+ }
39
+ }