-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "masscode",
"title": "massCode",
"description": "Fetch snippets from massCode v4 app",
"icon": "massCode.png",
"author": "antonreshetov",
"version": "2.0.0",
"categories": [
"Productivity",
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "MassCode Assistant",
"description": "Fetch snippets from massCode v4 app",
"mode": "view"
}
],
"preferences": [
{
"name": "port",
"title": "massCode API Port",
"description": "Port number for massCode API",
"type": "textfield",
"placeholder": "4321",
"default": "4321",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.32.1",
"axios": "^0.26.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@raycast/eslint-config": "^2.0.4",
"@types/node": "^22.16.0",
"@types/react": "^19.1.8",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"bummp": "^0.2.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"react-devtools": "^6.1.3",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"volta": {
"node": "22.17.0"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit $1"
}
}