@versini/ui-styles 1.3.0

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,40 @@
1
+ {
2
+ "name": "@versini/ui-styles",
3
+ "version": "1.3.0",
4
+ "license": "MIT",
5
+ "author": "Arno Versini",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "homepage": "https://github.com/aversini/ui-components",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git@github.com:aversini/ui-components.git"
13
+ },
14
+ "type": "module",
15
+ "main": "dist/index.js",
16
+ "types": "dist/index.d.ts",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "build:check": "tsc",
22
+ "build:js": "vite build",
23
+ "build:types": "tsup",
24
+ "build": "npm-run-all --serial clean build:check build:js build:types",
25
+ "clean": "rimraf dist",
26
+ "dev:js": "vite build --watch --mode development",
27
+ "dev:types": "tsup --watch src",
28
+ "dev": "npm-run-all clean --parallel dev:js dev:types",
29
+ "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix --color",
30
+ "test:coverage": "echo \"WARNING: no test specified\" && exit 0",
31
+ "test:watch": "vitest",
32
+ "test": "cross-env-shell NODE_ENV=test vitest run"
33
+ },
34
+ "dependencies": {
35
+ "@tailwindcss/typography": "0.5.10",
36
+ "culori": "4.0.1",
37
+ "tailwindcss": "3.4.1"
38
+ },
39
+ "gitHead": "90f0343fd8858a4a28a14b6b412ee48484c4ae14"
40
+ }