Files
discordeno/packages/old/logger/package.json
2023-01-13 04:17:52 -08:00

34 lines
922 B
JSON

{
"name": "@discordeno/logger",
"version": "18.0.0-alpha.1",
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/discordeno/discordeno.git"
},
"scripts": {
"build": "swc --delete-dir-on-start src --out-dir dist",
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"fmt": "eslint --fix \"src/**/*.ts*\"",
"lint": "eslint \"src/**/*.ts*\"",
"test:type": "tsc --noEmit"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.21",
"@types/node": "^18.11.9",
"eslint": "^8.0.1",
"eslint-config-discordeno": "*",
"sinon": "^15.0.0",
"ts-node": "^10.9.1",
"tsconfig": "*",
"typescript": "^4.9.3"
},
"dependencies": {
"chalk": "^5.1.2"
}
}