-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 912 Bytes
/
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
{
"name": "@jspm2013/appwrite-wrapper",
"version": "1.4.0",
"description": "Wrapper library to handle Appwrite methods including server handling using SSR with NextJS v15 (useActionState, useAction,...)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jspm2013/appwrite-wrapper.git"
},
"keywords": [
"wrapper",
"library",
"javascript",
"appwrite",
"ssr",
"nextjs"
],
"author": "Johann Payer",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"next": "^15.1.4",
"node-appwrite": "^14.1.0"
}
}