AstralView/packages/sdk/package.json

22 lines
486 B
JSON

{
"name": "@astralview/sdk",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src --max-warnings=0",
"test": "node -e \"console.log('no tests yet')\""
}
}