mirror of
https://github.com/bendtherules/ts-transformer-visualizer.git
synced 2026-08-18 13:51:48 +00:00
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "ts-transformer-visualizer",
|
|
"version": "1.0.0",
|
|
"description": "Visualize AST changes caused by a typescript transformer, live. Very helpful for demo.",
|
|
"author": "bendtherules",
|
|
"license": "MIT",
|
|
"repository": "bendtherules/ts-transformer-visualizer",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.es.js",
|
|
"jsnext:main": "dist/index.es.js",
|
|
"engines": {
|
|
"node": ">=8",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
|
|
"test:watch": "react-scripts-ts test --env=jsdom",
|
|
"build": "rollup -c",
|
|
"start": "rollup -c -w",
|
|
"prepare": "yarn run build",
|
|
"predeploy": "cd example && yarn install && yarn run build",
|
|
"deploy": "gh-pages -d example/build",
|
|
"format": "prettier --write \"{src,example/src}/**/*.{js,ts}*\""
|
|
},
|
|
"dependencies": {
|
|
"react-diff-viewer": "3.0.1",
|
|
"react-flexbox-grid": "^2.1.2",
|
|
"react-redux": "^7.1.3",
|
|
"react-transition-group": "^4.3.0",
|
|
"redux": "^4.0.5",
|
|
"redux-devtools-extension": "^2.13.8"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.0",
|
|
"react-dom": "^16.8.0",
|
|
"typescript": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/rollup": "^2.4.1",
|
|
"@types/jest": "^23.1.5",
|
|
"@types/react": "^16.3.13",
|
|
"@types/react-dom": "^16.0.5",
|
|
"@types/react-redux": "^7.1.7",
|
|
"@types/react-transition-group": "^4.2.3",
|
|
"babel-core": "^6.26.3",
|
|
"babel-runtime": "^6.26.0",
|
|
"cross-env": "^5.1.4",
|
|
"gh-pages": "^1.2.0",
|
|
"prettier": "^1.19.1",
|
|
"prop-types": "^15.7.2",
|
|
"react-scripts-ts": "^3.1.0",
|
|
"rollup": "^0.62.0",
|
|
"rollup-plugin-babel": "^3.0.7",
|
|
"rollup-plugin-commonjs": "^9.1.3",
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
"rollup-plugin-postcss": "^1.6.2",
|
|
"rollup-plugin-typescript2": "^0.17.0",
|
|
"rollup-plugin-url": "^1.4.0",
|
|
"typescript": "^3.7.5"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|