-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "dev-toolbox",
"title": "Developer Toolbox",
"description": "A collection of utils commonly used in daily development.",
"icon": "command-icon.png",
"author": "dytes",
"license": "MIT",
"categories": ["Developer Tools", "Productivity"],
"commands": [
{
"name": "index",
"title": "Developer Toolbox",
"description": "A collection of utils commonly used in daily development.",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.65.0",
"date-fns": "^3.2.0",
"jsonwebtoken": "^9.0.2",
"run-applescript": "^7.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@biomejs/biome": "1.8.2",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "~20.11.0",
"@types/react": "^18.2.47",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "ray build -e dist -o out",
"dev": "ray develop",
"ray-lint": "ray lint",
"test": "jest",
"check": "biome ci ."
}
}