| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "<%= packageName %>",
- "version": "0.1.0",
- "description": "<%= description %>",
- "sideEffects": false,
- "main": "lib/index.js",
- "module": "esm/index.js",
- "files": [
- "esm",
- "lib"
- ],
- "private": true,
- "scripts": {
- "build": "npm run build-cjs && npm run build-esm && npm run ts-types",
- "build-cjs": "babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir lib",
- "build-clean": "npm run clean && npm run build",
- "build-esm": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir esm",
- "dev": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --watch --copy-files --out-dir esm",
- "prebuild": "rimraf {lib,esm,tsconfig.tsbuildinfo}",
- "postbuild": "npm run test",
- "ts-types": "tsc --build",
- "test": "jest"
- },
- "author": "My Name",
- "license": "Apache-2.0",
- "publishConfig": {
- "access": "public"
- },
- "dependencies": {},
- "peerDependencies": {
- "@airbnb/config-babel": "^2.0.1",
- "@superset-ui/chart-controls": "*",
- "@superset-ui/core": "*",
- "react": "^17.0.2"
- },
- "devDependencies": {
- "@babel/cli": "^7.16.0",
- "@types/jest": "^26.0.4",
- "jest": "^29.7.0",
- "jest-environment-jsdom": "^29.7.0",
- "rimraf": "^3.0.2",
- "typescript": "^4.1.2"
- }
- }
|