trand_common_v1 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/eslint.config.mjs +12 -0
  2. package/package.json +40 -0
@@ -0,0 +1,12 @@
1
+ import globals from "globals";
2
+ import pluginJs from "@eslint/js";
3
+ import tseslint from "typescript-eslint";
4
+
5
+ export default [
6
+ {files: ["**/*.{js,mjs,cjs,ts}"]},
7
+ {languageOptions: { globals: globals.node }},
8
+ pluginJs.configs.recommended,
9
+ ...tseslint.configs.recommended,
10
+ {ignores: ["**/node_modules/", "./dist/"]}
11
+ ];
12
+
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "trand_common_v1",
3
+ "version": "0.1.0",
4
+ "description": "Common modules for Trand API Server and Admin User Frontend",
5
+ "keywords": [
6
+ "trand"
7
+ ],
8
+ "homepage": "https://github.com/jepilyun/trand_common_v1#readme",
9
+ "bugs": {
10
+ "url": "https://github.com/jepilyun/trand_common_v1/issues"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/jepilyun/trand_common_v1.git"
15
+ },
16
+ "license": "ISC",
17
+ "author": "Jepil Yun",
18
+ "type": "module",
19
+ "main": "index.js",
20
+ "scripts": {
21
+ "lint": "eslint --fix '**/**/*.ts'",
22
+ "prettier": "prettier --write --config ./.prettierrc.json '**/*.ts'",
23
+ "build": "tsc"
24
+ },
25
+ "devDependencies": {
26
+ "@eslint/js": "^9.26.0",
27
+ "@types/express": "^5.0.1",
28
+ "@typescript-eslint/eslint-plugin": "^8.32.1",
29
+ "@typescript-eslint/parser": "^8.32.1",
30
+ "eslint": "^9.26.0",
31
+ "eslint-config-prettier": "^10.1.5",
32
+ "eslint-import-resolver-typescript": "^4.3.4",
33
+ "eslint-plugin-import": "^2.31.0",
34
+ "eslint-plugin-prettier": "^5.4.0",
35
+ "globals": "^16.1.0",
36
+ "prettier": "^3.5.3",
37
+ "typescript": "^5.8.3",
38
+ "typescript-eslint": "^8.32.1"
39
+ }
40
+ }