-
- Downloads
feat: revamp folder architecture - EBSIINT-8920
parent
33dfcb0b
No related branches found
No related tags found
Showing
- .changeset/EBSIINT-8920.md 2 additions, 0 deletions.changeset/EBSIINT-8920.md
- .changeset/README.md 8 additions, 0 deletions.changeset/README.md
- .changeset/config.json 11 additions, 0 deletions.changeset/config.json
- .gitignore 1 addition, 1 deletion.gitignore
- .gitlab-ci.yml 57 additions, 0 deletions.gitlab-ci.yml
- .husky/pre-commit 0 additions, 3 deletions.husky/pre-commit
- .nvmrc 1 addition, 1 deletion.nvmrc
- .prettierignore 2 additions, 0 deletions.prettierignore
- CLI.md 86 additions, 0 deletionsCLI.md
- CONTRIBUTING.md 100 additions, 0 deletionsCONTRIBUTING.md
- LICENSE 190 additions, 0 deletionsLICENSE
- README.md 5 additions, 159 deletionsREADME.md
- cli/utils/jsonSchema.js 11 additions, 22 deletionscli/utils/jsonSchema.js
- cli/utils/requestSiopJwt.js 1 addition, 1 deletioncli/utils/requestSiopJwt.js
- manifest.json 224 additions, 284 deletionsmanifest.json
- package-lock.json 0 additions, 10948 deletionspackage-lock.json
- package.json 31 additions, 7 deletionspackage.json
- pnpm-lock.yaml 5270 additions, 0 deletionspnpm-lock.yaml
- pnpm-workspace.yaml 2 additions, 0 deletionspnpm-workspace.yaml
- schemas/ebsi-accreditation/2022-11_01/examples/accredited-to-accredit.json 0 additions, 45 deletions...editation/2022-11_01/examples/accredited-to-accredit.json
.changeset/EBSIINT-8920.md
0 → 100644
.changeset/README.md
0 → 100644
.changeset/config.json
0 → 100644
.gitlab-ci.yml
0 → 100644
.prettierignore
0 → 100644
CLI.md
0 → 100644
CONTRIBUTING.md
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
package-lock.json
deleted
100644 → 0
This diff is collapsed.
... | @@ -9,12 +9,14 @@ | ... | @@ -9,12 +9,14 @@ |
"ejsc": "bin/run.js" | "ejsc": "bin/run.js" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"build": "node ./scripts/build.js", | |||
"format": "prettier . --write", | "format": "prettier . --write", | ||
"lint:eslint": "eslint .", | "lint:eslint": "eslint .", | ||
"lint:prettier": "prettier . --check", | "lint:prettier": "prettier . --check", | ||
"lint": "npm run lint:eslint && npm run lint:prettier", | "lint": "pnpm run lint:eslint && pnpm run lint:prettier", | ||
"test": "vitest --run", | "test": "vitest --run", | ||
"prepare": "is-ci || husky install" | "prepare": "is-ci || husky", | ||
"publish-packages": "pnpm build && pnpm publish -r" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -40,16 +42,19 @@ | ... | @@ -40,16 +42,19 @@ |
"multiformats": "^9.6.4" | "multiformats": "^9.6.4" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"eslint": "^8.56.0", | "@changesets/cli": "^2.27.1", | ||
"eslint": "^8.57.0", | |||
"eslint-config-airbnb-base": "^15.0.0", | "eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^9.1.0", | "eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | "eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-prettier": "^5.1.2", | "eslint-plugin-prettier": "^5.1.2", | ||
"eslint-plugin-vitest": "^0.3.20", | "eslint-plugin-vitest": "^0.3.20", | ||
"husky": "^8.0.3", | "husky": "^9.0.11", | ||
"is-ci": "^3.0.1", | "is-ci": "^3.0.1", | ||
"lint-staged": "^13.0.3", | "json-schema-to-typescript": "^13.1.2", | ||
"lint-staged": "^15.2.2", | |||
"prettier": "^3.1.1", | "prettier": "^3.1.1", | ||
"ts-morph": "^21.0.1", | |||
"vitest": "^1.2.0" | "vitest": "^1.2.0" | ||
}, | }, | ||
"prettier": {}, | "prettier": {}, | ||
... | @@ -69,10 +74,29 @@ | ... | @@ -69,10 +74,29 @@ |
"error", | "error", | ||
"always" | "always" | ||
] | ] | ||
}, | |||
"overrides": [ | |||
{ | |||
"files": [ | |||
"scripts/**/*.js" | |||
], | |||
"rules": { | |||
"import/no-extraneous-dependencies": [ | |||
"error", | |||
{ | |||
"devDependencies": true, | |||
"optionalDependencies": false, | |||
"peerDependencies": false, | |||
"bundledDependencies": false | |||
} | } | ||
] | |||
} | |||
} | |||
] | |||
}, | }, | ||
"lint-staged": { | "lint-staged": { | ||
"*.{js}": "eslint --fix", | "*.{js}": "eslint --fix", | ||
"*.{md,json}": "prettier --write" | "*.{md,json}": "prettier --write" | ||
} | }, | ||
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2" | |||
} | } |
pnpm-lock.yaml
0 → 100644
This diff is collapsed.
pnpm-workspace.yaml
0 → 100644
Please register or sign in to comment