mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 11:34:41 +03:00
2d3f0e116c
mainly refactoring. also updates CI workflow to run packages/ts-inspect tests.
33 lines
804 B
JSON
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"
|
|
}
|
|
}
|