rainbowindex 0.2.0 → 0.2.2

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 CHANGED
@@ -1,102 +1,108 @@
1
1
  {
2
- "name": "rainbowindex",
3
- "version": "0.2.0",
4
- "description": "CSS-first system for building and maintaining consistent user interfaces",
5
- "keywords": [
6
- "css",
7
- "utility-css",
8
- "atomic-css",
9
- "design-tokens",
10
- "design-system",
11
- "theming",
12
- "dark-mode",
13
- "oklch",
14
- "fluid-typography",
15
- "google-fonts",
16
- "postcss",
17
- "postcss-plugin",
18
- "vite-plugin",
19
- "class-merge",
20
- "classnames",
21
- "tailwind",
22
- "tailwindcss",
23
- "cli"
24
- ],
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/rainbowindex/rainbowindex.git"
28
- },
29
- "author": "rainbowindex (https://github.com/rainbowindex)",
30
- "homepage": "https://rainbowindex.dev",
31
- "bugs": "https://github.com/rainbowindex/rainbowindex/issues",
32
- "type": "module",
33
- "main": "./dist/index.mjs",
34
- "types": "./dist/index.d.ts",
35
- "style": "./dist/index.css",
36
- "exports": {
37
- ".": {
38
- "types": "./dist/index.d.ts",
39
- "style": "./dist/index.css",
40
- "browser": "./dist/browser.mjs",
41
- "node": "./dist/index.mjs",
42
- "default": "./dist/index.mjs"
43
- },
44
- "./index.css": "./dist/index.css",
45
- "./vite": {
46
- "types": "./dist/vite.d.ts",
47
- "default": "./dist/vite.mjs"
48
- },
49
- "./package.json": "./package.json"
50
- },
51
- "bin": {
52
- "rainbowindex": "./dist/cli.mjs"
53
- },
54
- "files": [
55
- "dist",
56
- "CHANGELOG.md"
57
- ],
58
- "sideEffects": [
59
- "**/*.css"
60
- ],
61
- "engines": {
62
- "node": ">=20.19"
63
- },
64
- "license": "MIT",
65
- "dependencies": {
66
- "chokidar": "^4.0.3",
67
- "lightningcss": "^1.25.0",
68
- "tinyglobby": "^0.2.15"
69
- },
70
- "peerDependencies": {
71
- "postcss": "^8.5.0",
72
- "vite": "*"
73
- },
74
- "peerDependenciesMeta": {
75
- "vite": {
76
- "optional": true
77
- }
78
- },
79
- "devDependencies": {
80
- "@biomejs/biome": "^2.4.16",
81
- "@types/node": "^25.9.1",
82
- "@vitest/coverage-v8": "^4.1.0",
83
- "postcss": "^8.5.8",
84
- "tsup": "^8.5.1",
85
- "typescript": "^6.0.3",
86
- "vite": "8.0.0",
87
- "vitest": "^4.0.17"
88
- },
89
- "scripts": {
90
- "build": "tsup",
91
- "check": "pnpm typecheck && pnpm lint && pnpm test && pnpm test:artifacts",
92
- "test": "vitest run --exclude __tests__/cli/** --exclude __tests__/package.test.ts",
93
- "test:coverage": "vitest run --coverage --exclude __tests__/cli/** --exclude __tests__/package.test.ts",
94
- "test:artifacts": "pnpm build && vitest run __tests__/cli/cli.test.ts __tests__/package.test.ts",
95
- "test:watch": "vitest",
96
- "typecheck": "tsc --noEmit",
97
- "lint": "biome lint .",
98
- "lint:fix": "biome lint --write .",
99
- "format": "biome format --write .",
100
- "format:check": "biome format ."
101
- }
102
- }
2
+ "name": "rainbowindex",
3
+ "version": "0.2.2",
4
+ "description": "CSS-first system for building and maintaining consistent user interfaces",
5
+ "keywords": [
6
+ "css",
7
+ "utility-css",
8
+ "atomic-css",
9
+ "design-tokens",
10
+ "design-system",
11
+ "theming",
12
+ "dark-mode",
13
+ "oklch",
14
+ "fluid-typography",
15
+ "google-fonts",
16
+ "postcss",
17
+ "postcss-plugin",
18
+ "vite-plugin",
19
+ "class-merge",
20
+ "classnames",
21
+ "tailwind",
22
+ "tailwindcss",
23
+ "cli"
24
+ ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/rainbowindex/rainbowindex.git"
28
+ },
29
+ "author": "rainbowindex (https://github.com/rainbowindex)",
30
+ "homepage": "https://rainbowindex.dev",
31
+ "bugs": "https://github.com/rainbowindex/rainbowindex/issues",
32
+ "type": "module",
33
+ "packageManager": "pnpm@10.12.1",
34
+ "main": "./dist/index.mjs",
35
+ "types": "./dist/index.d.ts",
36
+ "style": "./dist/index.css",
37
+ "scripts": {
38
+ "build": "tsup",
39
+ "prepublishOnly": "pnpm check",
40
+ "check": "pnpm typecheck && pnpm lint && pnpm test && pnpm test:artifacts",
41
+ "test": "vitest run --exclude __tests__/cli/** --exclude __tests__/package.test.ts",
42
+ "test:coverage": "vitest run --coverage --exclude __tests__/cli/** --exclude __tests__/package.test.ts",
43
+ "test:artifacts": "pnpm build && vitest run __tests__/cli/cli.test.ts __tests__/package.test.ts",
44
+ "test:watch": "vitest",
45
+ "typecheck": "tsc --noEmit",
46
+ "lint": "biome lint .",
47
+ "lint:fix": "biome lint --write .",
48
+ "format": "biome format --write .",
49
+ "format:check": "biome format ."
50
+ },
51
+ "exports": {
52
+ ".": {
53
+ "types": "./dist/index.d.ts",
54
+ "style": "./dist/index.css",
55
+ "browser": "./dist/browser.mjs",
56
+ "node": "./dist/index.mjs",
57
+ "default": "./dist/index.mjs"
58
+ },
59
+ "./index.css": "./dist/index.css",
60
+ "./editor": {
61
+ "types": "./dist/editor.d.ts",
62
+ "default": "./dist/editor.mjs"
63
+ },
64
+ "./vite": {
65
+ "types": "./dist/vite.d.ts",
66
+ "default": "./dist/vite.mjs"
67
+ },
68
+ "./package.json": "./package.json"
69
+ },
70
+ "bin": {
71
+ "rainbowindex": "dist/cli.mjs"
72
+ },
73
+ "files": [
74
+ "dist",
75
+ "CHANGELOG.md"
76
+ ],
77
+ "sideEffects": [
78
+ "**/*.css"
79
+ ],
80
+ "engines": {
81
+ "node": ">=20.19"
82
+ },
83
+ "license": "MIT",
84
+ "dependencies": {
85
+ "chokidar": "^4.0.3",
86
+ "lightningcss": "^1.25.0",
87
+ "tinyglobby": "^0.2.15"
88
+ },
89
+ "peerDependencies": {
90
+ "postcss": "^8.5.0",
91
+ "vite": "*"
92
+ },
93
+ "peerDependenciesMeta": {
94
+ "vite": {
95
+ "optional": true
96
+ }
97
+ },
98
+ "devDependencies": {
99
+ "@biomejs/biome": "^2.4.16",
100
+ "@types/node": "^25.9.1",
101
+ "@vitest/coverage-v8": "^4.1.0",
102
+ "postcss": "^8.5.8",
103
+ "tsup": "^8.5.1",
104
+ "typescript": "^6.0.3",
105
+ "vite": "8.0.0",
106
+ "vitest": "^4.0.17"
107
+ }
108
+ }