2022-04-09 17:17:36 +00:00
|
|
|
{
|
2022-07-19 03:31:13 +00:00
|
|
|
"name": "@crystalmath/api",
|
2022-04-09 17:17:36 +00:00
|
|
|
"version": "0.1.0",
|
2022-07-19 03:31:13 +00:00
|
|
|
"description": "",
|
2022-04-09 17:17:36 +00:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-10 01:12:08 +00:00
|
|
|
"@extollo/lib": "^0.9.33",
|
2022-04-09 17:17:36 +00:00
|
|
|
"copyfiles": "^2.4.1",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-expose-internals": "^4.5.4",
|
|
|
|
"ts-patch": "^2.0.1",
|
|
|
|
"ts-to-zod": "^1.8.0",
|
|
|
|
"typescript": "^4.3.2",
|
|
|
|
"zod": "^3.11.6"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
"build": "excc -c package.json -t tsconfig.json",
|
|
|
|
"app": "pnpm run build && node lib/index.js",
|
2022-04-10 09:36:39 +00:00
|
|
|
"cli": "pnpm run build && node lib/cli.js",
|
2022-07-19 03:31:13 +00:00
|
|
|
"cd:build": "docker image build . -t ${DOCKER_REGISTRY}/glmdev/mathy-api",
|
|
|
|
"cd:publish": "docker push ${DOCKER_REGISTRY}/glmdev/mathy-api"
|
2022-04-09 17:17:36 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
|
|
|
"prepare": "npm run build",
|
|
|
|
"postversion": "git push && git push --tags",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-07-19 03:31:13 +00:00
|
|
|
"url": "https://code.garrettmills.dev/crystalmath/api"
|
2022-04-09 17:17:36 +00:00
|
|
|
},
|
|
|
|
"author": "garrettmills <shout@garrettmills.dev>",
|
|
|
|
"license": "MIT",
|
|
|
|
"extollo": {
|
|
|
|
"cc": {
|
|
|
|
"zodify": [
|
|
|
|
"src/app/types"
|
|
|
|
],
|
|
|
|
"non-source": [
|
|
|
|
".env",
|
|
|
|
"src/app/resources"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@extollo/cc": "^0.6.0"
|
|
|
|
}
|
|
|
|
}
|