-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "linote",
"displayName": "linote",
"description": "Have notes that expire after 7 days",
"version": "0.0.1",
"license": "MIT",
"publisher": "leifio",
"engines": {
"vscode": "^1.44.0"
},
"repository": {
"type": "git",
"url": "https://github.com/leifg/vscode-linote.git"
},
"release": {
"branches": ["main"],
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"prepare": {
"path": "semantic-release-vsce",
"packageVsix": "linote.vsix"
},
"publish": [
"semantic-release-vsce",
{
"path": "@semantic-release/github",
"assets": "linote.vsix"
}
]
},
"categories": [
"Snippets"
],
"activationEvents": [
"onCommand:linote.openFile"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "linote.openFile",
"title": "Linote: Open File"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"vscode:publish": "vsce package && vsce publish",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.11",
"@types/uuid": "^8.3.4",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"mocha": "^10.4.0",
"semantic-release": "^19.0.5",
"semantic-release-vsce": "^5.7.2",
"typescript": "^5.5.3",
"vsce": "^2.15.0",
"vscode-test": "^1.6.1"
},
"dependencies": {
"uuid": "^8.3.2"
}
}