forked from vbrick/rev-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "@vbrick/rev-client",
"version": "0.10.0",
"description": "Vbrick Rev API client for browser and server",
"type": "module",
"main": "dist/node/rev-client.cjs",
"module": "dist/es/rev-client.mjs",
"browser": "dist/rev-client.js",
"types": "dist/rev-client.d.ts",
"exports": {
".": {
"node": {
"import": "./dist/es/rev-client.mjs",
"require": "./dist/node/rev-client.cjs"
},
"default": "./dist/rev-client.js"
}
},
"files": [
"dist",
"test",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "rollup -c",
"rollup:watch": "rollup -c -w",
"prepublishOnly": "rollup -c",
"check": "tsc --noEmit -w"
},
"private": false,
"author": "Luke Selden",
"license": "MIT",
"repository": "github:vbrick/rev-client-js",
"engines": {
"node": ">=14.13.1"
},
"dependencies": {
"fetch-blob": "^3.1.2",
"form-data": "^3.0.1",
"node-abort-controller": "^3.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"rollup-plugin-dts": "^3.0.2",
"@types/node-fetch": "^2.5.12",
"rollup": "^2.56.2",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}