-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "appwrite-db-migration",
"version": "0.0.1",
"description": "DB Schema migration tool for Appwrite",
"author": "Andrei P. <andrei.panamarenka@gmail.com>",
"license": "BSD-3-Clause",
"bin": {
"appwrite-db": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"LICENSE",
"package.json"
],
"keywords": [
"appwrite",
"schema",
"migration",
"typescript"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"dev": "npx ts-node src/cli.ts",
"lint": "eslint src/*.ts"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"commander": "^11.0.0",
"node-appwrite": "^11.0.0"
},
"engines": {
"node": ">=16.13.0"
}
}