-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.57 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
{
"name": "cookcli-scripts",
"publisher": "RohitRajendran",
"displayName": "CookCLI Scripts",
"description": "CookCLI commands built into VSCode to make it easier to work with Cooklang recipe files.",
"version": "1.0.1",
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/RohitRajendran/cookcli-scripts"
},
"activationEvents": [
"onCommand:cookcli-scripts.readRecipe",
"onCommand:cookcli-scripts.validateRecipe",
"onCommand:cookcli-scripts.prettifyRecipe",
"onCommand:cookcli-scripts.imageRecipe",
"onCommand:"
],
"icon": "media/logo.png",
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "cookcli-scripts.readRecipe",
"title": "cookcli: Read Recipe"
},
{
"command": "cookcli-scripts.validateRecipe",
"title": "cookcli: Validate Recipe"
},
{
"command": "cookcli-scripts.prettifyRecipe",
"title": "cookcli: Prettify Recipe"
},
{
"command": "cookcli-scripts.imageRecipe",
"title": "cookcli: Get Image for Recipe"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build-base -- --minify",
"build-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"build": "npm run build-base -- --sourcemap",
"watch": "npm run build-base -- --sourcemap --watch",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run build && npm run lint",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"spellcheck": "cspell lint \"**/*.{md,ts,js,json,yml,yaml}\"",
"test": "vscode-test",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "25.x",
"@types/vscode": "1.109.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vscode/test-cli": "0.0.12",
"@vscode/test-electron": "2.5.2",
"esbuild": "0.27.3",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"cspell": "9.7.0",
"glob": "13.0.6",
"mocha": "11.7.5",
"prettier": "3.8.1",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"@vscode/vsce": "3.7.1"
},
"dependencies": {
"@changesets/cli": "^2.30.0"
},
"overrides": {
"diff": "6.0.0"
}
}