-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "@uploadcare/api-client-utils",
"version": "6.15.1",
"type": "module",
"main": "./dist/cjs/index.browser.cjs",
"module": "./dist/esm/index.browser.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.browser.mjs",
"require": "./dist/cjs/index.browser.cjs"
}
},
"sideEffects": false,
"files": [
"dist/*"
],
"scripts": {
"clean": "rimraf dist",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"prebuild": "npm run clean",
"build": "npm run build:types && npm run build:compile",
"build:types": "dts-bundle-generator --project tsconfig.dts.json -o dist/index.d.ts src/index.ts",
"build:compile": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uploadcare/uploadcare-js-api-clients.git"
},
"author": "Uploadcare",
"license": "MIT",
"bugs": {
"url": "https://github.com/uploadcare/uploadcare-js-api-clients/issues"
},
"homepage": "https://github.com/uploadcare/uploadcare-js-api-clients#readme"
}