@mostajs/agora-sourcing 0.0.1

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.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@mostajs/agora-sourcing",
3
+ "version": "0.0.1",
4
+ "description": "Sourcing maison : collecte d'offres par SCRAPING déterministe (moteur ex-AgoraScope-Studio, cheerio + registre de scrapers façon ORM) → OPTIMISATION d'achat via @mostajs/ro-pla (min-cost-flow / MILP / hungarian) → RFQ via @mostajs/sourcing. Moins d'IA, plus d'outils : l'algorithme collecte les FAITS et calcule la meilleure décision d'achat ; le LLM ne fait que synthétiser. STADE PROPOSITION (0.0.1).",
5
+ "author": "Dr Hamid MADANI <drmdh@msn.com>",
6
+ "license": "AGPL-3.0-or-later",
7
+ "type": "module",
8
+ "main": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "default": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "llms.txt",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "keywords": [
24
+ "sourcing",
25
+ "scraping",
26
+ "cheerio",
27
+ "dialect",
28
+ "registry",
29
+ "operations-research",
30
+ "optimization",
31
+ "procurement",
32
+ "rfq",
33
+ "mostajs"
34
+ ],
35
+ "dependencies": {
36
+ "cheerio": "^1.1.2",
37
+ "@mostajs/config": "^1.0.0"
38
+ },
39
+ "peerDependencies": {
40
+ "@mostajs/sourcing": "^0.2.0",
41
+ "@mostajs/ro-pla": "^0.1.0",
42
+ "@mostajs/orm": "^2.10.1"
43
+ },
44
+ "peerDependenciesMeta": {
45
+ "puppeteer": {
46
+ "optional": true
47
+ },
48
+ "@mostajs/orm": {
49
+ "optional": true
50
+ },
51
+ "@mostajs/sourcing": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "devDependencies": {
56
+ "@mostajs/mjs-unit": "^0.3.0",
57
+ "@types/node": "^22.0.0",
58
+ "typescript": "^5.6.0"
59
+ },
60
+ "scripts": {
61
+ "build": "tsc -p tsconfig.json",
62
+ "test": "bash test-scripts/run-tests.sh"
63
+ }
64
+ }