-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "fetch-appwrite-types",
"version": "2.2.2",
"description": "Appwrite types file maker",
"author": "Etienne Moureton",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"scripts": {
"deploy": "pnpm run prepare && np",
"dev": "pnpm run prepare && node dist/bin/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "pnpm run lint -- --fix",
"test": "vitest run",
"prepare": "pnpm run lint && pnpm run build",
"prepublishOnly": "pnpm run test && pnpm run lint",
"preversion": "pnpm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch"
},
"bin": "dist/bin/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/YsarocK/fetch-appwrite-types"
},
"files": [
"dist/**/*"
],
"keywords": [
"typescript",
"npm",
"template",
"ts"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.21",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ansi-regex": ">=6.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"execa": "^9.5.1",
"typescript": "^4.9.5",
"vite": "^5.4.11",
"vitest": "^2.1.4"
},
"dependencies": {
"consola": "^3.2.3",
"dotenv": "^16.4.5",
"dts-dom": "^3.7.0",
"node-appwrite": "^13.0.0",
"ts-node": "^10.9.2"
}
}