chaincss 2.0.2 → 2.0.4

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.
Files changed (1) hide show
  1. package/package.json +19 -36
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "chaincss",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "The JavaScript-native styling engine for the modern web",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "files": [
9
- "dist",
9
+ "dist/**/*",
10
10
  "README.md",
11
11
  "LICENSE",
12
12
  "CHANGELOG.md"
@@ -48,8 +48,6 @@
48
48
  "build:compiler": "esbuild src/compiler/index.ts --bundle --platform=node --format=esm --outfile=dist/compiler/index.js --external:chokidar --external:glob --external:commander --external:chalk --external:autoprefixer --external:postcss --external:clean-css",
49
49
  "dev": "npm run build:clean && npm run build:types && npm run build:core -- --watch",
50
50
  "prepublishOnly": "npm run build",
51
- "test": "vitest",
52
- "lint": "eslint src --ext .ts,.tsx",
53
51
  "version": "git add -A",
54
52
  "postversion": "git push && git push --tags"
55
53
  },
@@ -57,15 +55,12 @@
57
55
  "chalk": "^5.3.0",
58
56
  "chokidar": "^3.5.3",
59
57
  "clean-css": "^5.3.2",
60
- "commander": "^11.1.0",
61
- "postcss": "^8.4.31"
58
+ "commander": "^11.1.0"
62
59
  },
63
60
  "devDependencies": {
64
61
  "@types/clean-css": "^4.2.10",
65
62
  "@types/node": "^20.8.10",
66
63
  "@types/react": "^18.2.0",
67
- "autoprefixer": "^10.4.16",
68
- "browserslist": "^4.22.1",
69
64
  "esbuild": "^0.19.12",
70
65
  "glob": "^10.3.10",
71
66
  "react": "^18.2.0",
@@ -75,43 +70,31 @@
75
70
  },
76
71
  "peerDependencies": {
77
72
  "react": "^18.0.0",
78
- "vue": "^3.0.0"
73
+ "vue": "^3.0.0",
74
+ "autoprefixer": "^10.4.16",
75
+ "postcss": "^8.4.31",
76
+ "browserslist": "^4.22.1",
77
+ "caniuse-db": "^1.0.30001785"
79
78
  },
80
79
  "peerDependenciesMeta": {
81
- "react": {
82
- "optional": true
83
- },
84
- "vue": {
85
- "optional": true
86
- }
80
+ "react": { "optional": true },
81
+ "vue": { "optional": true },
82
+ "autoprefixer": { "optional": true },
83
+ "postcss": { "optional": true },
84
+ "browserslist": { "optional": true },
85
+ "caniuse-db": { "optional": true }
87
86
  },
88
87
  "keywords": [
89
- "css",
90
88
  "css-in-js",
91
- "chaincss",
92
- "atomic-css",
93
89
  "zero-runtime",
90
+ "atomic-css",
91
+ "css-compiler",
94
92
  "design-tokens",
95
93
  "react",
96
- "nextjs",
94
+ "vue",
97
95
  "vite",
98
96
  "webpack",
99
- "styled-components",
100
- "emotion",
101
- "tailwind",
102
- "vanilla-extract",
103
- "panda-css",
104
- "styling",
105
- "component-library",
106
- "theming",
107
- "responsive",
108
- "buildtime-css",
109
- "buildtime",
110
- "stylesheet",
111
- "javascript",
112
- "typescript",
113
- "runtime-css",
114
- "runtime"
97
+ "nextjs"
115
98
  ],
116
99
  "author": "Rommel Caneos",
117
100
  "license": "MIT",
@@ -127,4 +110,4 @@
127
110
  "engines": {
128
111
  "node": ">=18.0.0"
129
112
  }
130
- }
113
+ }