diff options
author | Sebastian <sebasjm@gmail.com> | 2023-05-05 08:34:21 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-05-05 08:52:57 -0300 |
commit | 6340cc5454f637a97fb7329d2494c1dfc3fb1735 (patch) | |
tree | d97d65ed7df5c23ede7caa7047338d978c25d154 /packages/web-util/package.json | |
parent | 5e1f450a20aa00c1783337a3b6024167dbc568bd (diff) |
add postcss, fix export names
Diffstat (limited to 'packages/web-util/package.json')
-rw-r--r-- | packages/web-util/package.json | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/packages/web-util/package.json b/packages/web-util/package.json index 77f71c7bb..eda3f0874 100644 --- a/packages/web-util/package.json +++ b/packages/web-util/package.json @@ -9,25 +9,21 @@ "license": "AGPL-3.0-or-later", "private": false, "exports": { - "./lib/tests/swr": { - "types": "./lib/tests/swr.js", - "default": "./lib/tests/swr.mjs" - }, - "./lib/tests/mock": { - "types": "./lib/tests/mock.js", - "default": "./lib/tests/mock.mjs" - }, - "./lib/index.browser": { + "./browser": { "types": "./lib/index.browser.js", "default": "./lib/index.browser.mjs" }, - "./lib/index.build": { + "./build": { "types": "./lib/index.build.js", "default": "./lib/index.build.mjs" }, - "./lib/index.node": { + "./node": { "types": "./lib/index.node.js", "default": "./lib/index.node.cjs" + }, + "./testing": { + "types": "./lib/index.testing.js", + "default": "./lib/index.testing.mjs" } }, "scripts": { @@ -42,21 +38,31 @@ "@types/node": "^18.11.17", "@types/web": "^0.0.82", "@types/ws": "^8.5.3", + "autoprefixer": "^10.4.14", "axios": "^1.2.2", "chokidar": "^3.5.3", "esbuild": "^0.17.7", "express": "^4.18.2", + "postcss": "^8.4.23", + "postcss-load-config": "^4.0.1", "preact": "10.11.3", "preact-render-to-string": "^5.2.6", "prettier": "^2.5.1", "rimraf": "^3.0.2", + "sass": "1.56.1", "swr": "2.0.3", "tslib": "^2.4.0", - "sass": "1.56.1", "typescript": "^4.9.4", "ws": "7.4.5" }, "dependencies": { - "@types/chrome": "0.0.197" + "@babel/core": "7.18.9", + "@babel/helper-compilation-targets": "7.18.9", + "@linaria/babel-preset": "3.0.0-beta.23", + "@linaria/core": "3.0.0-beta.22", + "@linaria/esbuild": "3.0.0-beta.22", + "@linaria/react": "3.0.0-beta.22", + "@types/chrome": "0.0.197", + "tailwindcss": "^3.3.2" } -}
\ No newline at end of file +} |