-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "node-appwrite",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
"version": "14.1.0",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsup"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./file": {
"import": {
"types": "./dist/inputFile.d.mts",
"default": "./dist/inputFile.mjs"
},
"require": {
"types": "./dist/inputFile.d.ts",
"default": "./dist/inputFile.js"
}
}
},
"files": [
"dist"
],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/appwrite/sdk-for-node"
},
"devDependencies": {
"@types/node": "20.11.25",
"tsup": "7.2.0",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"tslib": "2.6.2",
"typescript": "5.4.2"
},
"dependencies": {
"node-fetch-native-with-agent": "1.7.2"
}
}