mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
e92cb25249
Implement the TS SDK as a preview feature.
28 lines
564 B
JSON
28 lines
564 B
JSON
{
|
|
"name": "wasp-config",
|
|
"license": "MIT",
|
|
"author": "wasp",
|
|
"version": "1.0.0",
|
|
"description": "Wasp TS SDK",
|
|
"type": "module",
|
|
"main": "dist/run.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "nodemon ./src/index.ts"
|
|
},
|
|
"bin": "./dist/run.js",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.9.0",
|
|
"@types/node": "^22.4.1",
|
|
"eslint": "^9.9.0",
|
|
"globals": "^15.9.0",
|
|
"nodemon": "^3.1.4",
|
|
"prettier": "3.3.3",
|
|
"typescript": "^5.5.4",
|
|
"typescript-eslint": "^8.1.0"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
}
|
|
}
|