wasp/waspc/packages/ts-inspect/package.json
Craig McIlwrath 2d3f0e116c
[waspls] cleanup extimport code (#1292)
mainly refactoring. also updates CI workflow to run packages/ts-inspect tests.
2023-07-07 08:21:33 -04:00

33 lines
804 B
JSON

{
"author": "Wasp Team",
"license": "MIT",
"name": "wasp-ts-inspect",
"version": "0.0.1",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/index.js",
"test": "jest"
},
"//": [
"typescript is purposefully a normal dependency, and not a dev dependency:",
"the compiler is called at runtime to extract information from JS/TS files."
],
"dependencies": {
"json5": "^2.2.3",
"typescript": "^5.1.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}