-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@constl/serveur",
"version": "2.1.4",
"repository": "https://github.com/reseau-constellation/serveur-ws",
"author": "Julien Jean Malard-Adam",
"license": "AGPL-3.0",
"private": false,
"description": "Un serveur Constellation pour connecter à d'autres applications locales (sur la même machine)",
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"watch": "npm-watch",
"nettoyer": "rimraf dist",
"compiler": "pnpm versioner && pnpm nettoyer && pnpm tspc -p tsconfig.json && chmod +x ./dist/src/bin.js",
"compiler:prod": "pnpm versioner && pnpm nettoyer && pnpm tspc -p tsconfig.build.json && chmod +x ./dist/bin.js",
"test:processus": "pnpm compiler && env TYPE_SERVEUR=proc pnpm aegir test -t node --cov -- --exit",
"test:binaire": "pnpm compiler && env TYPE_SERVEUR=bin pnpm aegir test -t node --cov -- --exit",
"test": "pnpm test:processus && pnpm test:binaire",
"formatter": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint src",
"publier": "pnpm test && pnpm formatter && pnpm compiler:prod && (git commit -a -m 'version' || true) && pnpm publish",
"versioner": "pnpm genversion --es6 --semi src/version.ts"
},
"dependencies": {
"@constl/ipa": "^1.4.4",
"axios": "^1.7.7",
"bip39": "^3.1.0",
"bufferutil": "^4.0.8",
"chalk": "^5.3.0",
"core-js": "^3.39.0",
"express": "^4.21.1",
"find-free-port": "^2.0.0",
"iso-constants": "github:inverted-capital/iso-constants#patch-1",
"isomorphic-ws": "^5.0.0",
"log-update": "^6.1.0",
"ora": "^8.1.1",
"uuid": "^11.0.3",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@constl/mandataire": "3.0.3",
"@constl/utils-tests": "1.6.7",
"@eslint/js": "^9.15.0",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"aegir": "^45.0.2",
"eslint": "^9.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.1.0",
"execa": "^9.5.1",
"genversion": "^3.2.0",
"keyv": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-patch": "^3.2.1",
"typed-emitter": "^2.1.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"typescript-transform-paths": "^3.5.2"
},
"bin": {
"constl": "./dist/bin.js"
}
}