-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 863 Bytes
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
{
"name": "facturoplus",
"version": "1.0.0",
"description": "Génération de documents commerciaux - Template Method + Strategy",
"type": "module",
"bin": {
"facturoplus": "dist/main.js"
},
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"qa": "npm run typecheck && npm run format:check && npm run lint"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.17.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.64.0"
},
"dependencies": {
"prettier": "^3.9.5"
}
}