|
| 1 | +{ |
| 2 | + "name": "@react-atomic-ui/components", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "> TODO: description", |
| 5 | + "author": "Laura <laurazenc@gmail.com>", |
| 6 | + "homepage": "https://github.com/laurazenc/react-atomic-ui#readme", |
| 7 | + "license": "ISC", |
| 8 | + "main": "dist/cjs/index.js", |
| 9 | + "module": "dist/esm/index.js", |
| 10 | + "types": "dist/types/index.d.ts", |
| 11 | + "typings": "dist/types/index.d.ts", |
| 12 | + "files": [ |
| 13 | + "dist" |
| 14 | + ], |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/laurazenc/react-atomic-ui.git" |
| 18 | + }, |
| 19 | + "scripts": { |
| 20 | + "prebuild": "rimraf dist", |
| 21 | + "dev": "nodemon --watch src --exec yarn build -e ts,tsx", |
| 22 | + "build": "concurrently yarn:build:*", |
| 23 | + "build:esm": "tsc --module es6 --target es5 --outDir dist/esm", |
| 24 | + "build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs", |
| 25 | + "build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types", |
| 26 | + "clean": "rimraf coverage", |
| 27 | + "test": "jest --passWithNoTests --env=jsdom ", |
| 28 | + "test:ci": "yarn test --watchAll --coverage", |
| 29 | + "test:cov": "yarn clean && yarn test --coverage --ci --runInBand", |
| 30 | + "lint": "eslint src --ext .ts,.tsx --config ../../.eslintrc" |
| 31 | + }, |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/laurazenc/react-atomic-ui/issues" |
| 34 | + }, |
| 35 | + "peerDependencies": { |
| 36 | + "react": "17.x" |
| 37 | + }, |
| 38 | + "dependencies": { |
| 39 | + "@react-atomic-ui/theme": "*", |
| 40 | + "@emotion/react": "^11.1.5" |
| 41 | + } |
| 42 | +} |
0 commit comments