@tricoteuses/assemblee 3.2.10 → 3.2.12

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 CHANGED
@@ -1,135 +1,134 @@
1
- {
2
- "name": "@tricoteuses/assemblee",
3
- "version": "3.2.10",
4
- "description": "Retrieve, clean up & handle French Assemblée nationale's open data",
5
- "keywords": [
6
- "Assemblée nationale",
7
- "France",
8
- "open data",
9
- "Parliament"
10
- ],
11
- "author": "Emmanuel Raviart <emmanuel@raviart.com>",
12
- "contributors": [
13
- "Henry Boisgibault <henry.boisgibault@proton.me>",
14
- "Jérémie Corpinot <jerem.freelance@codingbox.fr>",
15
- "Mathilde Couvreur <mathilde.couvreur@gmail.com>",
16
- "Loïc Dachary <loic@dachary.org>",
17
- "Pierre Drege <dregop@proton.me>",
18
- "Nelson Herbin <nelson@herbin.info>",
19
- "implicitdef",
20
- "Hélène Jonin <helene.jonin@gmail.com>",
21
- "Pauline Léon <paulineleon@tutanota.com>",
22
- "Paul-Henry Ngounou <ngpaulhenry@gmail.com>"
23
- ],
24
- "bugs": {
25
- "url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee/issues"
26
- },
27
- "homepage": "https://tricoteuses.fr/",
28
- "license": "AGPL-3.0-or-later",
29
- "repository": {
30
- "type": "git",
31
- "url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee.git"
32
- },
33
- "type": "module",
34
- "engines": {
35
- "node": ">=20.0.0"
36
- },
37
- "files": [
38
- "lib"
39
- ],
40
- "exports": {
41
- ".": {
42
- "typedoc": "./src/index.ts",
43
- "import": "./lib/index.js",
44
- "types": "./lib/index.d.ts"
45
- },
46
- "./cleaners": {
47
- "typedoc": "./src/cleaners/index.ts",
48
- "import": "./lib/cleaners.js",
49
- "types": "./lib/cleaners/index.d.ts"
50
- },
51
- "./git": {
52
- "typedoc": "./src/git.ts",
53
- "import": "./lib/git.js",
54
- "types": "./lib/git.d.ts"
55
- },
56
- "./loaders": {
57
- "typedoc": "./src/loaders.ts",
58
- "import": "./lib/loaders.js",
59
- "types": "./lib/loaders.d.ts"
60
- },
61
- "./parsers": {
62
- "typedoc": "./src/parsers/index.ts",
63
- "import": "./lib/parsers.js",
64
- "types": "./lib/parsers/index.d.ts"
65
- },
66
- "./package.json": "./package.json"
67
- },
68
- "publishConfig": {
69
- "access": "public"
70
- },
71
- "scripts": {
72
- "build": "vite build && npm run prettier",
73
- "clean": "rimraf lib",
74
- "data:clean_data": "tsx src/scripts/clean_reorganized_data.ts --no-validate",
75
- "data:download": "tsx src/scripts/data-download.ts",
76
- "data:reorganize_data": "tsx src/scripts/reorganize_data.ts --no-validate-raw",
77
- "data:retrieve_deputes_photos": "tsx src/scripts/retrieve_deputes_photos.ts --fetch",
78
- "data:retrieve_documents": "tsx src/scripts/retrieve_documents.ts",
79
- "data:retrieve_open_data": "tsx src/scripts/retrieve_open_data.ts --fetch",
80
- "data:retrieve_pending_amendements": "tsx src/scripts/retrieve_pending_amendments.ts --incremental",
81
- "data:retrieve_senateurs_photos": "tsx src/scripts/retrieve_senateurs_photos.ts --fetch",
82
- "lint": "eslint .",
83
- "prepare": "npm run build",
84
- "prettier": "prettier --write \"src/**/*.ts\"",
85
- "test": "vitest run",
86
- "test:iter_load": "tsx src/scripts/test_iter_load.ts",
87
- "type-check": "tsc --noEmit",
88
- "type-check:watch": "npm run type-check -- --watch"
89
- },
90
- "dependencies": {
91
- "cheerio": "^1.2.0",
92
- "date-fns": "^4.1.0",
93
- "deep-equal": "^2.2.3",
94
- "deep-object-diff": "^1.1.9",
95
- "fast-xml-parser": "^5.5.9",
96
- "front-matter": "^4.0.2",
97
- "fs-extra": "^11.3.4",
98
- "glob": "^13.0.6",
99
- "js-yaml": "^4.1.1",
100
- "node-html-parser": "^7.1.0",
101
- "node-stream-zip": "^1.15.0",
102
- "p-limit": "^7.3.0",
103
- "sharp": "^0.34.5",
104
- "zod": "^4.3.6",
105
- "zod-opts": "^1.0.0"
106
- },
107
- "devDependencies": {
108
- "@eslint/js": "^10.0.1",
109
- "@types/deep-equal": "^1.0.4",
110
- "@types/fs-extra": "^11.0.4",
111
- "@types/js-yaml": "^4.0.9",
112
- "@types/node": "^25.5.0",
113
- "@types/temp": "^0.9.4",
114
- "@types/unzipper": "^0.10.11",
115
- "ajv": "^8.18.0",
116
- "eslint": "^10.1.0",
117
- "globals": "^17.4.0",
118
- "prettier": "^3.8.1",
119
- "rimraf": "^6.1.3",
120
- "temp": "^0.9.4",
121
- "ts-json-schema-generator": "^2.9.0",
122
- "tslib": "^2.8.1",
123
- "tsx": "^4.21.0",
124
- "typedoc": "^0.28.18",
125
- "typedoc-plugin-markdown": "^4.11.0",
126
- "typescript": "^5.9.3",
127
- "typescript-eslint": "^8.57.2",
128
- "vite": "^8.0.3",
129
- "vite-plugin-dts": "^4.5.4",
130
- "vitest": "^4.0.14"
131
- },
132
- "overrides": {
133
- "@microsoft/api-extractor": "7.55.0"
134
- }
135
- }
1
+ {
2
+ "name": "@tricoteuses/assemblee",
3
+ "version": "3.2.12",
4
+ "description": "Retrieve, clean up & handle French Assemblée nationale's open data",
5
+ "keywords": [
6
+ "Assemblée nationale",
7
+ "France",
8
+ "open data",
9
+ "Parliament"
10
+ ],
11
+ "author": "Emmanuel Raviart <emmanuel@raviart.com>",
12
+ "contributors": [
13
+ "Henry Boisgibault <henry.boisgibault@proton.me>",
14
+ "Jérémie Corpinot <jerem.freelance@codingbox.fr>",
15
+ "Mathilde Couvreur <mathilde.couvreur@gmail.com>",
16
+ "Loïc Dachary <loic@dachary.org>",
17
+ "Pierre Drege <dregop@proton.me>",
18
+ "Nelson Herbin <nelson@herbin.info>",
19
+ "implicitdef",
20
+ "Hélène Jonin <helene.jonin@gmail.com>",
21
+ "Pauline Léon <paulineleon@tutanota.com>",
22
+ "Paul-Henry Ngounou <ngpaulhenry@gmail.com>"
23
+ ],
24
+ "bugs": {
25
+ "url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee/issues"
26
+ },
27
+ "homepage": "https://tricoteuses.fr/",
28
+ "license": "AGPL-3.0-or-later",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://git.tricoteuses.fr/logiciels/tricoteuses-assemblee.git"
32
+ },
33
+ "type": "module",
34
+ "engines": {
35
+ "node": ">=20.0.0"
36
+ },
37
+ "files": [
38
+ "lib"
39
+ ],
40
+ "exports": {
41
+ ".": {
42
+ "typedoc": "./src/index.ts",
43
+ "import": "./lib/index.js",
44
+ "types": "./lib/index.d.ts"
45
+ },
46
+ "./cleaners": {
47
+ "typedoc": "./src/cleaners/index.ts",
48
+ "import": "./lib/cleaners.js",
49
+ "types": "./lib/cleaners/index.d.ts"
50
+ },
51
+ "./git": {
52
+ "typedoc": "./src/git.ts",
53
+ "import": "./lib/git.js",
54
+ "types": "./lib/git.d.ts"
55
+ },
56
+ "./loaders": {
57
+ "typedoc": "./src/loaders.ts",
58
+ "import": "./lib/loaders.js",
59
+ "types": "./lib/loaders.d.ts"
60
+ },
61
+ "./parsers": {
62
+ "typedoc": "./src/parsers/index.ts",
63
+ "import": "./lib/parsers.js",
64
+ "types": "./lib/parsers/index.d.ts"
65
+ },
66
+ "./package.json": "./package.json"
67
+ },
68
+ "publishConfig": {
69
+ "access": "public"
70
+ },
71
+ "scripts": {
72
+ "build": "vite build && npm run prettier",
73
+ "clean": "rimraf lib",
74
+ "data:clean_data": "tsx src/scripts/clean_reorganized_data.ts --no-validate",
75
+ "data:download": "tsx src/scripts/data-download.ts",
76
+ "data:reorganize_data": "tsx src/scripts/reorganize_data.ts --no-validate-raw",
77
+ "data:retrieve_deputes_photos": "tsx src/scripts/retrieve_deputes_photos.ts --fetch",
78
+ "data:retrieve_documents": "tsx src/scripts/retrieve_documents.ts",
79
+ "data:retrieve_open_data": "tsx src/scripts/retrieve_open_data.ts --fetch",
80
+ "data:retrieve_pending_amendements": "tsx src/scripts/retrieve_pending_amendments.ts --incremental",
81
+ "data:retrieve_senateurs_photos": "tsx src/scripts/retrieve_senateurs_photos.ts --fetch",
82
+ "lint": "eslint .",
83
+ "prepare": "npm run build",
84
+ "prettier": "prettier --write \"src/**/*.ts\"",
85
+ "test": "vitest run",
86
+ "test:iter_load": "tsx src/scripts/test_iter_load.ts",
87
+ "type-check": "tsc --noEmit",
88
+ "type-check:watch": "npm run type-check -- --watch"
89
+ },
90
+ "dependencies": {
91
+ "cheerio": "^1.2.0",
92
+ "date-fns": "^4.4.0",
93
+ "deep-equal": "^2.2.3",
94
+ "deep-object-diff": "^1.1.9",
95
+ "fast-xml-parser": "^5.9.3",
96
+ "fs-extra": "^11.3.5",
97
+ "glob": "^13.0.6",
98
+ "js-yaml": "^5.2.0",
99
+ "node-html-parser": "^8.0.3",
100
+ "node-stream-zip": "^1.15.0",
101
+ "p-limit": "^7.3.0",
102
+ "sharp": "^0.35.2",
103
+ "zod": "^4.4.3",
104
+ "zod-opts": "^1.0.0"
105
+ },
106
+ "devDependencies": {
107
+ "@eslint/js": "^10.0.1",
108
+ "@types/deep-equal": "^1.0.4",
109
+ "@types/fs-extra": "^11.0.4",
110
+ "@types/js-yaml": "^4.0.9",
111
+ "@types/node": "^26.0.1",
112
+ "@types/temp": "^0.9.4",
113
+ "@types/unzipper": "^0.10.11",
114
+ "ajv": "^8.20.0",
115
+ "eslint": "^10.6.0",
116
+ "globals": "^17.7.0",
117
+ "prettier": "^3.9.1",
118
+ "rimraf": "^6.1.3",
119
+ "temp": "^0.9.4",
120
+ "ts-json-schema-generator": "^2.9.0",
121
+ "tslib": "^2.8.1",
122
+ "tsx": "^4.22.4",
123
+ "typedoc": "^0.28.19",
124
+ "typedoc-plugin-markdown": "^4.12.0",
125
+ "typescript": "^6.0.3",
126
+ "typescript-eslint": "^8.62.0",
127
+ "vite": "^8.1.0",
128
+ "vite-plugin-dts": "^5.0.3",
129
+ "vitest": "^4.1.9"
130
+ },
131
+ "overrides": {
132
+ "@microsoft/api-extractor": "7.55.0"
133
+ }
134
+ }
@@ -1 +0,0 @@
1
- export {};