aboutsummaryrefslogtreecommitdiff
path: root/@linaria/packages/shaker/package.json
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-23 16:46:06 -0300
committerSebastian <sebasjm@gmail.com>2021-08-23 16:48:30 -0300
commit38acabfa6089ab8ac469c12b5f55022fb96935e5 (patch)
tree453dbf70000cc5e338b06201af1eaca8343f8f73 /@linaria/packages/shaker/package.json
parentf26125e039143b92dc0d84e7775f508ab0cdcaa8 (diff)
downloadnode-vendor-master.tar.gz
node-vendor-master.tar.bz2
node-vendor-master.zip
added web vendorsHEADmaster
Diffstat (limited to '@linaria/packages/shaker/package.json')
-rw-r--r--@linaria/packages/shaker/package.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/@linaria/packages/shaker/package.json b/@linaria/packages/shaker/package.json
new file mode 100644
index 0000000..5c12659
--- /dev/null
+++ b/@linaria/packages/shaker/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "@linaria/shaker",
+ "version": "3.0.0-beta.11",
+ "publishConfig": {
+ "access": "public"
+ },
+ "description": "Blazing fast zero-runtime CSS in JS library",
+ "main": "lib/index.js",
+ "module": "esm/index.js",
+ "types": "types",
+ "files": [
+ "types/",
+ "lib/",
+ "esm/"
+ ],
+ "license": "MIT",
+ "repository": "git@github.com:callstack/linaria.git",
+ "bugs": {
+ "url": "https://github.com/callstack/linaria/issues"
+ },
+ "homepage": "https://github.com/callstack/linaria#readme",
+ "keywords": [
+ "react",
+ "linaria",
+ "css",
+ "css-in-js",
+ "styled-components",
+ "babel-plugin",
+ "babel"
+ ],
+ "scripts": {
+ "build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
+ "build:esm": "babel src --out-dir esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
+ "build": "yarn build:lib && yarn build:esm",
+ "build:declarations": "tsc --emitDeclarationOnly --outDir types",
+ "prepare": "yarn build && yarn build:declarations",
+ "test": "jest --config ../../jest.config.js --rootDir .",
+ "typecheck": "tsc --noEmit --composite false",
+ "watch": "yarn build --watch"
+ },
+ "devDependencies": {
+ "@types/dedent": "^0.7.0",
+ "dedent": "^0.7.0"
+ },
+ "dependencies": {
+ "@babel/generator": ">=7",
+ "@babel/plugin-transform-runtime": ">=7",
+ "@babel/plugin-transform-template-literals": ">=7",
+ "@babel/preset-env": ">=7",
+ "@linaria/babel-preset": "^3.0.0-beta.7",
+ "@linaria/logger": "^3.0.0-beta.3",
+ "@linaria/preeval": "^3.0.0-beta.8",
+ "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
+ "ts-invariant": "^0.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": ">=7"
+ }
+}