-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.83 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
{
"name": "vscode-arduino-api",
"displayName": "VS Code Arduino API",
"version": "0.2.1",
"description": "Arduino IDE API for VS Code extensions",
"categories": [
"Other"
],
"keywords": [
"arduino",
"vscode",
"arduino-ide",
"vscode-extension"
],
"bugs": {
"url": "https://github.com/dankeboy36/vscode-arduino-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dankeboy36/vscode-arduino-api.git"
},
"license": "MIT",
"author": "dankeboy36",
"publisher": "dankeboy36",
"main": "./dist/extension.js",
"types": "out/api.d.ts",
"files": [
"out/api.d.ts"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run typings && webpack --mode production --devtool hidden-source-map",
"clean": "rimraf dist out *.vsix",
"compile": "webpack && vsce package",
"compile-tests": "tsc -p . --outDir out",
"doc": "typedoc --plugin typedoc-plugin-markdown --readme none --hideBreadcrumbs true --disableSources --out docs ./src/api.ts",
"postdoc": "prettier --write ./docs",
"format": "prettier --write .",
"lint": "eslint src --ext ts",
"release": "semantic-release",
"pretest": "npm run compile-tests",
"test": "node ./out/test/runTest.js",
"typings": "tsc -p . --declaration --declarationMap --outDir out",
"watch": "webpack --watch",
"watch-tests": "tsc -p . -w --outDir out"
},
"contributes": {
"commands": [
{
"command": "arduinoAPI.updateState",
"title": "Update State"
}
],
"configuration": {
"id": "arduinoAPI",
"title": "Arduino API",
"properties": {
"arduinoAPI.log": {
"type": "boolean",
"default": false,
"markdownDescription": "If `true`, the Arduino state update will be logged to the `Arduino API` _Output Channel_. Defaults to `false`."
},
"arduinoAPI.compareBeforeUpdate": {
"type": "boolean",
"default": true,
"markdownDescription": "If `true`, the Arduino state update (via the `arduinoAPI.updateState` command) will compare the current state and the new state, and if they are the \"same\", no update will happen. Defaults to `true`.",
"deprecationMessage": "This should be used for development purposes to tweaking the state update behavior while this project is in an early state."
}
}
},
"menus": {
"commandPalette": [
{
"command": "arduinoAPI.updateState",
"when": "false"
}
]
}
},
"activationEvents": [
"*"
],
"dependencies": {
"@types/vscode": "^1.78.0",
"ardunno-cli": "^0.1.8",
"boards-list": "^1.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.4.7",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"semantic-release-vsce": "^5.6.4",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"engines": {
"vscode": "^1.78.0"
},
"vsce": {
"allowStarActivation": true
}
}