-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 KB
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
{
"name": "@remscodes/renault-api-client",
"version": "2.0.0",
"description": "Http client using Renault API",
"license": "MIT",
"author": {
"name": "Rémy Abitbol",
"url": "https://github.com/remscodes"
},
"scripts": {
"build": "rollup -c",
"types": "tsc --noEmit",
"types:spec": "npm run types -- -p ./tsconfig.spec.json",
"types:all": "npm run types & npm run types:spec",
"rm-dist": "node ./scripts/rm-dist.cjs",
"prebuild": "npm run rm-dist",
"pretest": "npm run types:all"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/remscodes/renault-api-client"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@remscodes/renault-api": "^2.0.0",
"dayjs": "^1.11.13",
"drino": "^1.9.1",
"thror": "^1.0.3"
},
"devDependencies": {
"@types/node": "^20.14.10",
"esbuild": "^0.23.0",
"rollup": "^4.22.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.5.3"
},
"keywords": [
"renault",
"api",
"http"
],
"packageManager": "pnpm@9.15.4",
"sideEffects": false
}