2022-01-07 01:02:38 +00:00
|
|
|
{
|
2022-01-09 17:26:20 +00:00
|
|
|
"name": "@extollo/cc",
|
2022-01-09 17:30:34 +00:00
|
|
|
"version": "0.2.0",
|
2022-01-09 17:26:20 +00:00
|
|
|
"description": "Early-phase compiler for Extollo projects",
|
2022-01-07 01:02:38 +00:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "pnpm run lint && rimraf lib && tsc",
|
|
|
|
"app": "pnpm run build && node lib/index.js",
|
|
|
|
"prepare": "pnpm run build",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"lint:fix": "eslint --fix . --ext .ts"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
2022-01-09 17:26:20 +00:00
|
|
|
"bin": {
|
|
|
|
"excc": "lib/excc.js"
|
|
|
|
},
|
2022-01-07 01:02:38 +00:00
|
|
|
"prepare": "pnpm run build",
|
|
|
|
"postversion": "git push && git push --tags",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-01-09 17:26:20 +00:00
|
|
|
"url": "https://code.garrettmills.dev/extollo/cc"
|
2022-01-07 01:02:38 +00:00
|
|
|
},
|
|
|
|
"author": "Garrett Mills <shout@garrettmills.dev>",
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
|
|
"@typescript-eslint/parser": "^5.4.0",
|
|
|
|
"eslint": "^8.2.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-01-09 17:26:20 +00:00
|
|
|
"@types/argparse": "^2.0.10",
|
|
|
|
"@types/cli-color": "^2.0.2",
|
|
|
|
"@types/fs-extra": "^9.0.13",
|
|
|
|
"@types/mkdirp": "^1.0.2",
|
2022-01-07 01:02:38 +00:00
|
|
|
"@types/rimraf": "^3.0.2",
|
|
|
|
"@types/uuid": "^8.3.3",
|
2022-01-09 17:26:20 +00:00
|
|
|
"argparse": "^2.0.1",
|
|
|
|
"cli-color": "^2.0.1",
|
2022-01-07 01:02:38 +00:00
|
|
|
"dotenv": "^10.0.0",
|
2022-01-09 17:26:20 +00:00
|
|
|
"fs-extra": "^10.0.0",
|
2022-01-07 01:02:38 +00:00
|
|
|
"mkdirp": "^1.0.4",
|
2022-01-09 17:26:20 +00:00
|
|
|
"rfdc": "^1.3.0",
|
2022-01-07 01:02:38 +00:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-node": "^10.4.0",
|
2022-01-09 17:26:20 +00:00
|
|
|
"ts-to-zod": "^1.8.0",
|
2022-01-07 01:02:38 +00:00
|
|
|
"typescript": "^4.5.2",
|
|
|
|
"uuid": "^8.3.2"
|
|
|
|
}
|
|
|
|
}
|