-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.17 KB
/
package.json
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
{
"name": "@premai/prem-sdk",
"version": "0.3.74",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"format": [
"cjs",
"esm"
],
"clean": true,
"dts": true,
"treeshake": true
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"prepare": "tsup",
"size": "size-limit",
"analyze": "size-limit --why",
"dev": "tsup --watch",
"test": "ts-node ./test/test.ts"
},
"author": "Prem",
"sideEffects": false,
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/fs-extra": "^11.0.1",
"eslint": "^8.55.0",
"openapi-types": "^12.1.0",
"size-limit": "^8.2.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0"
}
}