-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 1.66 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
67
68
{
"name": "aifiles",
"version": "1.0.2",
"description": "Organize your files with AI",
"keywords": [
"ai",
"file",
"organize",
"move",
"chatgpt"
],
"license": "MIT",
"repository": "jjuliano/aifiles",
"author": "Joel Bryan Juliano ([email protected])",
"type": "module",
"files": [
"dist"
],
"bin": "dist/cli.mjs",
"scripts": {
"prepare": "simple-git-hooks",
"build": "pkgroll --minify",
"lint": "eslint --cache .",
"type-check": "tsc"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.ts": "eslint --cache"
},
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@pvtnbr/eslint-config": "^0.38.0",
"@types/ini": "^4.1.1",
"@types/inquirer": "^9.0.3",
"@types/mime": "^4.0.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios": "^1.3.4",
"chatgpt": "^5.2.5",
"cleye": "^1.3.2",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"execa": "^7.0.0",
"file-type": "^19.4.0",
"filenamify": "^5.1.1",
"ini": "^4.1.3",
"kolorist": "^1.7.0",
"lint-staged": "^13.1.2",
"mime": "^4.0.4",
"music-metadata": "^7.13.0",
"node-fetch": "^3.3.0",
"osx-tag": "^0.4.7",
"pkgroll": "^1.9.0",
"replicate-js": "github:nicholascelestin/replicate-js",
"simple-git-hooks": "^2.8.1",
"tempfile": "^5.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"pnpm": "^9.6.0"
}
}