-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
60
61
62
63
64
65
66
{
"name": "apptyped",
"version": "1.0.8",
"description": "A fully typed Appwrite SDK for both client-side and server-side Javascript.",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"dev": "bun src/index.ts",
"build": "npx tsc",
"copyTemplates": "copyfiles --error --up 2 src/commands/*.template.ejs lib/commands",
"postbuild": "npm run copyTemplates"
},
"keywords": [
"appwrite",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/oconr/apptyped"
},
"author": {
"name": "Ryan O'Connor",
"email": "[email protected]",
"url": "https://oconr.co.uk"
},
"license": "ISC",
"type": "module",
"dependencies": {
"@dotenvx/dotenvx": "^0.15.4",
"appwrite": "^13.0.1",
"clipanion": "^4.0.0-rc.3",
"ejs": "^3.1.9",
"node-appwrite": "^11.1.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^20.11.17",
"copyfiles": "^2.4.1"
},
"exports": {
"./client": {
"types": "./lib/client.d.ts",
"require": "./lib/client.js",
"import": "./lib/client.js"
},
"./server": {
"types": "./lib/server.d.ts",
"require": "./lib/server.js",
"import": "./lib/server.js"
}
},
"typesVersions": {
"*": {
"client": [
"lib/client.d.ts"
],
"server": [
"lib/server.d.ts"
]
}
},
"bin": {
"apptyped": "lib/index.js"
}
}