-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "pactlang",
"displayName": "PactLang",
"description": "Pact Programming Language",
"icon": "images/kadena-logo.png",
"publisher": "kadena",
"version": "0.0.7",
"private": true,
"packageManager": "pnpm@9.1.3",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Programming Languages"
],
"main": "./dist/index.js",
"files": [
"dist"
],
"activationEvents": [
"workspaceContains:**/.pact",
"workspaceContains:**/.repl"
],
"contributes": {
"commands": [
{
"command": "pact.restartLanguageServer",
"title": "Restart Language Server",
"category": "Pact"
}
],
"languages": [
{
"id": "pact",
"aliases": [
"Pact Programming Language",
"pact"
],
"extensions": [
".pact",
".repl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pact",
"scopeName": "source.pact",
"path": "./syntaxes/pact.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Pact configuration",
"properties": {
"pact.executable": {
"type": "string",
"default": "pact",
"description": "The name or path to the pact executable",
"scope": "window"
},
"pact.enableTrace": {
"type": "boolean",
"default": true,
"description": "Enable pact trace output.",
"scope": "window"
},
"pact.enableCoverage": {
"type": "boolean",
"default": false,
"description": "Enable code coverage. Requires coverage extension for display.",
"scope": "window"
},
"pact.enableLsp": {
"type": "boolean",
"default": true,
"description": "Enable the pact-lsp.",
"scope": "window"
}
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"lint": "eslint .",
"format": "prettier --write .",
"vscode:prepublish": "nr build",
"publish": "vsce publish",
"package": "vsce package",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish",
"coverage:html": "lcov-viewer lcov"
},
"devDependencies": {
"typescript-eslint": "^7.11.0",
"@antfu/ni": "^0.21.12",
"@types/node": "^20.12.12",
"@types/vscode": "^1.89.0",
"@vscode/vsce": "^2.26.1",
"bumpp": "^9.4.1",
"eslint": "^9.3.0",
"esno": "^4.7.0",
"rimraf": "^5.0.7",
"tsup": "^8.0.2",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"@lcov-viewer/cli": "^1.3.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@vscode/test-electron": "^2.3.9",
"@vscode/test-cli": "^0.0.9",
"esbuild": "^0.20.2",
"glob": "^10.3.12",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kadena-community/pact-vscode.git"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"extensionDependencies": [
"ryanluker.vscode-coverage-gutters",
"george-alisson.html-preview-vscode"
]
}