* POC for Shared AST Logic using Yarn Symlinks * fix: preinstall script for bundling shared packages * Merge commit * fix: updated the script to link, unlink the package as shared dep * fix: updated dependencies * Add a post-install script and fix yarn.lock file * Remove commented code * fix: added verification script, readme, moved scripts to shared Co-authored-by: Ayangade Adeoluwa <adeoluayangade@yahoo.com>
38 lines
968 B
JSON
38 lines
968 B
JSON
{
|
|
"name": "@shared/ast",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "build/index.js",
|
|
"module": "build/index.es.js",
|
|
"types": "build/index.d.ts",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"publishConfig": {
|
|
"directory": "build"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "rollup -c",
|
|
"start": "rollup -c",
|
|
"link-package": "yarn install && rollup -c && cd build && yarn link"
|
|
},
|
|
"dependencies": {
|
|
"acorn-walk": "^8.2.0",
|
|
"rollup": "^2.77.0",
|
|
"typescript": "4.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.17.12",
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
"@typescript-eslint/parser": "^5.25.0",
|
|
"rollup-plugin-generate-package-json": "^3.2.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
"rollup-plugin-typescript2": "^0.32.0",
|
|
"ts-jest": "27.0.0"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|