-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@demmorou/core",
"version": "1.0.0",
"author": "Deusimar (@demmorou)",
"description": "Personal libs for geral use",
"main": "dist/index.js",
"types": "dist/index.d.t",
"license": "MIT",
"scripts": {
"logger": "pnpm --filter ./packages/logger",
"errors": "pnpm --filter ./packages/errors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"workspaces": [
"packages/*"
],
"files": [
"dist"
],
"keywords": [
"monorepo",
"pnpm",
"logger"
],
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-typescript": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@demmorou/eslint-config": "workspace:^",
"@types/node": "^20.12.7",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}