-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 2.04 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 2.04 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
{
"name": "node-appwrite",
"homepage": "https://appwrite.io/support",
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
"version": "29.0.0",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsup",
"test": "jest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"analyse": "tsc --noEmit"
},
"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": {
"@eslint/js": "10.0.1",
"eslint": "10.9.0",
"globals": "16.5.0",
"@types/json-bigint": "1.0.4",
"@types/node": "26.2.0",
"tsup": "^8.5.1",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0",
"jest": "^30.4.2",
"prettier": "3.9.6"
},
"dependencies": {
"json-bigint": "1.0.0",
"undici": "^6.27.0"
},
"overrides": {
"esbuild": "^0.28.1",
"js-yaml": "^4.2.0",
"brace-expansion": "5.0.9"
}
}