node-chargepoint 0.0.1 → 0.3.2
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 +13 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-chargepoint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "A Node.js/TypeScript wrapper for the ChargePoint EV charging network API. Based on python-chargepoint by Marc Billow.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chargepoint",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"homepage": "https://github.com/musicbender/node-chargepoint",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/musicbender/node-chargepoint.git"
|
|
15
|
+
"url": "git+https://github.com/musicbender/node-chargepoint.git"
|
|
16
16
|
},
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/musicbender/node-chargepoint/issues"
|
|
@@ -41,9 +41,19 @@
|
|
|
41
41
|
"dist",
|
|
42
42
|
"LICENSE"
|
|
43
43
|
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"lint": "eslint src tests",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
51
|
+
"prepublishOnly": "pnpm build && pnpm typecheck"
|
|
52
|
+
},
|
|
44
53
|
"engines": {
|
|
45
54
|
"node": ">=24"
|
|
46
55
|
},
|
|
56
|
+
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38",
|
|
47
57
|
"dependencies": {
|
|
48
58
|
"commander": "^12.1.0"
|
|
49
59
|
},
|
|
@@ -55,13 +65,5 @@
|
|
|
55
65
|
"typescript": "^5.8.0",
|
|
56
66
|
"typescript-eslint": "^8.59.2",
|
|
57
67
|
"vitest": "^2.1.0"
|
|
58
|
-
},
|
|
59
|
-
"scripts": {
|
|
60
|
-
"build": "tsup",
|
|
61
|
-
"typecheck": "tsc --noEmit",
|
|
62
|
-
"lint": "eslint src tests",
|
|
63
|
-
"test": "vitest run",
|
|
64
|
-
"test:watch": "vitest",
|
|
65
|
-
"test:e2e": "vitest run --config vitest.e2e.config.ts"
|
|
66
68
|
}
|
|
67
|
-
}
|
|
69
|
+
}
|