-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "appwrite-typescript",
"version": "0.0.1",
"description": "Generate typescript types for Appwrite API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc && copyfiles -u 1 src/**/*.ejs dist",
"start": "cd dist && node index.js"
},
"bin": {
"appwrite-typescript": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okkindel/appwrite-typescript.git"
},
"keywords": [
"typescript",
"appwrite",
"types",
"generator",
"api",
"cli"
],
"author": {
"name": "Maciej Hajduk",
"email": "ebrithil97@gmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/okkindel/appwrite-typescript/issues"
},
"homepage": "https://github.com/okkindel/appwrite-typescript#readme",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^22.5.0",
"@types/yargs": "^17.0.33",
"copyfiles": "^2.4.1",
"typescript": "^5.5.4"
},
"dependencies": {
"ejs": "^3.1.10",
"node-appwrite": "^13.0.0",
"yargs": "^17.7.2"
}
}