* rts configurations for ast * update shared dependencies.json for shared ast module * feat: api for script to identifiers * fix: typo for identifiers * feat: api for multiple scripts to get identifiers * fix: rts config, apis for ast * fix: removed unnecessary changes for ast modules * fix: docker image for rts including ast shared module, rts file alias ref * fix: added comments in build.sh file Co-authored-by: Aman Agarwal <aman@appsmith.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
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:unit": "$(npm bin)/jest -b --colors --no-cache --silent --coverage --collectCoverage=true --coverageDirectory='../../' --coverageReporters='json-summary'",
|
|
"test:jest": "$(npm bin)/jest --watch",
|
|
"build": "rollup -c",
|
|
"start": "rollup -c",
|
|
"link-package": "yarn install && rollup -c && cd build && cp -R ../node_modules ./node_modules && yarn link"
|
|
},
|
|
"dependencies": {
|
|
"acorn": "^8.8.0",
|
|
"acorn-walk": "^8.2.0",
|
|
"astring": "^1.7.5",
|
|
"lodash": "^4.17.21",
|
|
"rollup": "^2.77.0",
|
|
"typescript": "4.5.5",
|
|
"unescape-js": "^1.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.17.12",
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/lodash": "^4.14.120",
|
|
"@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"
|
|
}
|