-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "spanish-tv-guide",
"title": "Spanish Tv Guide",
"description": "Browse the Spanish TV Guide",
"icon": "app-icon.png",
"author": "doktor500",
"categories": [
"Media"
],
"license": "MIT",
"type": "module",
"commands": [
{
"name": "index",
"title": "Spanish Tv Guide",
"description": "Displays the Spanish TV Guide",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.87.4",
"friendly-truncate": "^1.3.0",
"isomorphic-fetch": "^3.0.0",
"jimp": "^0.22.12",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"monet": "^0.9.3",
"ramda": "^0.30.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@raycast/eslint-config": "1.0.11",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2",
"@types/node": "22.10.1",
"@types/ramda": "^0.30.2",
"@types/react": "18.3.12",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish",
"test": "jest"
}
}