This repository was archived by the owner on Dec 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "cadquery",
"displayName": "CadQuery",
"publisher": "roipoussiere",
"description": "Build parametric 2D/3D CAD models in VSCode with the CadQuery library.",
"keywords": [
"cad",
"cadquery",
"python",
"3d",
"parametric",
"modeling"
],
"icon": "images/logo.png",
"homepage": "https://framagit.org/roipoussiere/cadquery-vscode",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://framagit.org/roipoussiere/cadquery-vscode.git"
},
"bugs": "https://framagit.org/roipoussiere/cadquery-vscode/-/issues",
"license": "MIT",
"author": "Roipoussiere (https://mastodon.tetaneutral.net/@roipoussiere)",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Visualization"
],
"main": "./dist/main.js",
"activationEvents": [
"onCommand:cadquery.init"
],
"contributes": {
"commands": [
{
"command": "cadquery.init",
"title": "Open CadQuery viewer"
}
],
"keybindings": [
{
"command": "cadquery.init",
"key": "f7",
"when": "!cadquery.enabled"
}
],
"configuration": {
"title": "CadQuery",
"properties": {
"cadquery.cadqueryServerUrl": {
"type": "string",
"default": "http://127.0.0.1:5000",
"description": "The url of the CadQuery server that runs your Python code."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"vscode:prepublish": "yarn run esbuild-base -- --minify",
"esbuild-base": "esbuild ./extension.js --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn run esbuild-base -- --sourcemap",
"esbuild-watch": "yarn run esbuild-base -- --sourcemap --watch",
"build": "yarn run vsce package --out ./build --yarn --baseImagesUrl https://framagit.org/roipoussiere/cadquery-vscode/-/raw/main"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "17.0.23",
"@types/vscode": "^1.42.0",
"@vscode/test-electron": "^2.1.3",
"esbuild": "^0.14.31",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"ovsx": "^0.3.0",
"typescript": "^4.5.5",
"vsce": "^2.7.0"
},
"dependencies": {
"xhr2": "^0.2.1"
}
}