-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.11 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
{
"publisher": "Gahotx",
"name": "smart-dot",
"displayName": "Smart Dot",
"version": "0.0.10",
"private": true,
"packageManager": "[email protected]",
"description": "Code completion with smart dot",
"author": "Gahotx <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/Gahotx",
"homepage": "https://github.com/Gahotx/vscode-smart-dot#readme",
"repository": {
"type": "git",
"url": "https://github.com/Gahotx/vscode-smart-dot"
},
"bugs": {
"url": "https://github.com/Gahotx/vscode-smart-dot/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/Gahotx"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"LICENSE.md",
"dist/*",
"res/*"
],
"engines": {
"vscode": "^1.92.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "Smart Dot",
"properties": {
"smartDot.languages": {
"type": "array",
"description": "Smart Dot supported languages"
},
"smartDot.options": {
"type": "array",
"description": "Smart Dot format options"
}
}
}
},
"scripts": {
"build": "tsup src/index.ts --external vscode",
"dev": "nr build --watch",
"prepare": "nr update",
"update": "vscode-ext-gen --output src/generated/meta.ts",
"lint": "eslint .",
"vscode:prepublish": "nr build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^2.26.0",
"@antfu/ni": "^0.22.4",
"@types/node": "^22.4.1",
"@types/vscode": "^1.92.0",
"@vscode/vsce": "^3.0.0",
"bumpp": "^9.5.1",
"eslint": "^9.9.0",
"esno": "^4.7.0",
"pnpm": "^9.7.1",
"reactive-vscode": "^0.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vitest": "^2.0.5",
"vscode-ext-gen": "^0.4.1"
}
}