-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.6 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.6 KB
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
69
70
71
72
73
74
75
76
77
78
79
{
"version": "0.1.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"smartfolder": "bin/smartfolder.js"
},
"files": [
"dist",
"src",
"bin"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@manishrc/smartfolder",
"description": "A local CLI that watches folders and routes every file-system event through an AI workflow",
"author": "Manish Chiniwalar",
"keywords": [
"ai",
"cli",
"file-watcher",
"automation",
"vercel-ai-sdk",
"file-management"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manishrc/smartfolder.git"
},
"module": "dist/smartfolder.esm.js",
"dependencies": {
"@ai-sdk/openai": "^2.0.67",
"@ai-sdk/vercel": "beta",
"ai": "beta",
"minimatch": "^10.1.1",
"pino": "^10.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/minimatch": "^5.1.2",
"@types/pdf-parse": "^1.1.5",
"husky": "^9.1.7",
"pino-pretty": "^11.2.0",
"size-limit": "^11.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"exifr": "^7.1.3",
"fluent-ffmpeg": "^2.1.3",
"music-metadata": "^11.10.1",
"node-stream-zip": "^1.15.0"
}
}