-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.47 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "box-typescript-sdk-gen",
"author": "Box <oss@box.com>",
"version": "1.19.1",
"description": "Official Box TypeScript Generated SDK",
"keywords": [
"box",
"sdk",
"api",
"rest",
"boxsdk"
],
"engines": {
"node": ">=16.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"browser": {
"./src/internal/utilsNode.ts": "./src/internal/utilsBrowser.ts",
"./lib/internal/utilsNode.js": "./lib/internal/utilsBrowser.js",
"./src/box/eventStream.ts": "./src/box/eventStreamBrowser.ts",
"./lib-esm/box/eventStream.js": "./lib-esm/box/eventStreamBrowser.js",
"./lib-esm/internal/utilsNode.js": "./lib-esm/internal/utilsBrowser.js"
},
"module": "./lib-esm/index.js",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./lib/*": {
"import": "./lib-esm/*.js",
"require": "./lib/*.js",
"types": "./lib/*.d.ts"
},
"./*": {
"import": "./lib-esm/*.js",
"require": "./lib/*.js",
"types": "./lib/*.d.ts"
},
"./box": {
"import": "./lib-esm/box/index.js",
"require": "./lib/box/index.js",
"types": "./lib/box/index.d.ts"
},
"./internal": {
"import": "./lib-esm/internal/index.js",
"require": "./lib/internal/index.js",
"types": "./lib/internal/index.d.ts"
},
"./managers": {
"import": "./lib-esm/managers/index.js",
"require": "./lib/managers/index.js",
"types": "./lib/managers/index.d.ts"
},
"./networking": {
"import": "./lib-esm/networking/index.js",
"require": "./lib/networking/index.js",
"types": "./lib/networking/index.d.ts"
},
"./parameters": {
"import": "./lib-esm/parameters/index.js",
"require": "./lib/parameters/index.js",
"types": "./lib/parameters/index.d.ts"
},
"./schemas": {
"import": "./lib-esm/schemas/index.js",
"require": "./lib/schemas/index.js",
"types": "./lib/schemas/index.d.ts"
},
"./serialization": {
"import": "./lib-esm/serialization/index.js",
"require": "./lib/serialization/index.js",
"types": "./lib/serialization/index.d.ts"
}
},
"sideEffects": false,
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"build:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"postbuild": "rollup -c",
"start": "echo \"Error: no start specified\" && exit 1",
"test": "jest"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/box/box-typescript-sdk-gen.git"
},
"dependencies": {
"buffer": "^6.0.3",
"form-data": "^4.0.4",
"hash-wasm": "^4.12.0",
"jose": "^5.2.2",
"node-fetch": "^2.6.3",
"proxy-agent": "^6.4.0",
"tslib": "^2.6.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.1",
"@types/node": "*",
"@types/node-fetch": "2.6.13",
"@types/uuid": "^9.0.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.2",
"rollup": "^4.4.0"
},
"files": [
"lib",
"lib-esm",
"src",
"README.md",
"LICENSE"
]
}