-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"publisher": "yuyinws",
"name": "nuxt-module-intellisense",
"displayName": "Nuxt Module Intellisense",
"version": "0.0.4",
"private": true,
"description": "Intelligent Nuxt Module autocompletes for VS Code",
"author": "yuyinws",
"license": "MIT",
"homepage": "https://github.com/yuyinws/nuxt-module-intellisense#readme",
"repository": {
"type": "git",
"url": "https://github.com/yuyinws/nuxt-module-intellisense"
},
"bugs": {
"url": "https://github.com/yuyinws/nuxt-module-intellisense/issues"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.88.0"
},
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"build": "tsup src/index.ts --external vscode",
"dev": "nr build --watch",
"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"
},
"dependencies": {
"ast-kit": "^0.12.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@antfu/ni": "^0.21.12",
"@babel/types": "^7.24.0",
"@types/node": "^20.12.7",
"@types/vscode": "^1.88.0",
"@vscode/vsce": "^2.26.0",
"bumpp": "^9.4.0",
"eslint": "^9.1.1",
"esno": "^4.7.0",
"pnpm": "^9.0.6",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2"
}
}