stadata-js 0.4.0 → 1.1.0
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 +20 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stadata-js",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "JavaScript/TypeScript SDK for Indonesia's Central Statistics Agency (BPS) API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -28,13 +28,16 @@
|
|
|
28
28
|
"test": "jest",
|
|
29
29
|
"test:watch": "jest --watch",
|
|
30
30
|
"test:coverage": "jest --coverage",
|
|
31
|
-
"lint": "
|
|
32
|
-
"lint:fix": "
|
|
31
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
32
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
33
33
|
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
34
34
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
|
|
35
35
|
"typecheck": "tsc --noEmit",
|
|
36
36
|
"prepublishOnly": "npm run build",
|
|
37
|
-
"ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run build"
|
|
37
|
+
"ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
|
|
38
|
+
"docs:dev": "vitepress dev docs",
|
|
39
|
+
"docs:build": "vitepress build docs",
|
|
40
|
+
"docs:preview": "vitepress preview docs"
|
|
38
41
|
},
|
|
39
42
|
"keywords": [
|
|
40
43
|
"bps",
|
|
@@ -56,20 +59,21 @@
|
|
|
56
59
|
},
|
|
57
60
|
"homepage": "https://github.com/IPDS-59/stadata_js#readme",
|
|
58
61
|
"devDependencies": {
|
|
59
|
-
"@rollup/plugin-terser": "^0.
|
|
62
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
60
63
|
"@types/jest": "^30.0.0",
|
|
61
|
-
"@types/node": "^
|
|
62
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
63
|
-
"@typescript-eslint/parser": "^8.
|
|
64
|
-
"eslint": "^
|
|
64
|
+
"@types/node": "^25.5.0",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
66
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
67
|
+
"eslint": "^10.1.0",
|
|
65
68
|
"eslint-config-prettier": "^10.1.8",
|
|
66
|
-
"eslint-plugin-prettier": "^5.
|
|
67
|
-
"jest": "^30.
|
|
68
|
-
"prettier": "^3.
|
|
69
|
-
"rollup-plugin-visualizer": "^
|
|
70
|
-
"ts-jest": "^29.
|
|
71
|
-
"tsup": "^8.
|
|
72
|
-
"typescript": "^
|
|
69
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
70
|
+
"jest": "^30.3.0",
|
|
71
|
+
"prettier": "^3.8.1",
|
|
72
|
+
"rollup-plugin-visualizer": "^7.0.1",
|
|
73
|
+
"ts-jest": "^29.4.9",
|
|
74
|
+
"tsup": "^8.5.1",
|
|
75
|
+
"typescript": "^6.0.2",
|
|
76
|
+
"vitepress": "^1.6.4"
|
|
73
77
|
},
|
|
74
78
|
"dependencies": {
|
|
75
79
|
"neverthrow": "^8.2.0"
|