-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.41 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"publisher": "AntonReshetov",
"name": "masscode-assistant",
"displayName": "massCode assistant",
"version": "2.0.1",
"description": "Fetch snippets from massCode app and create new ones",
"repository": {
"type": "git",
"url": "https://github.com/massCodeIO/assistant-vscode"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.96.0"
},
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "masscode-assistant.search",
"title": "massCode: Search"
},
{
"command": "masscode-assistant.create",
"title": "massCode: Create Snippet"
}
],
"configuration": {
"title": "massCode Assistant",
"properties": {
"masscode-assistant.notify": {
"type": "boolean",
"default": true,
"description": "Show notification"
},
"masscode-assistant.port": {
"type": "number",
"default": 4321,
"description": "Port number for massCode API"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && pnpm run lint",
"package": "vsce package",
"publish": "vsce publish",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"dependencies": {
"ky": "^1.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@types/mocha": "^10.0.10",
"@types/node": "~20.19.2",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"bumpp": "^10.2.0",
"eslint": "^9.30.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3"
},
"volta": {
"node": "20.16.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
}
}