-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "@adahiya/raga-lib",
"version": "0.5.1",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"check-lint": "eslint .",
"check-types": "tsc --noEmit",
"clean": "rm -rf lib/*",
"dev": "yarn build --watch",
"lint-fix": "eslint --fix .",
"publish-npm": "npm publish --access public",
"test": "node --test lib/**/*.test.js"
},
"dependencies": {
"@adahiya/raga-types": "workspace:*",
"ansis": "^4.2.0",
"dedent": "^1.7.1",
"fluent-ffmpeg": "^2.1.3",
"html-entities": "^2.6.0",
"plist": "^3.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^24.10.4",
"@types/plist": "^3.0.5",
"@types/prompts": "^2.4.9",
"eslint": "^10.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24"
},
"author": {
"name": "Adi Dahiya",
"email": "adi.dahiya14@gmail.com"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/adidahiya/raga.git"
},
"license": "MIT"
}