-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ng-zorro-vscode",
"displayName": "NG-ZORRO Snippets",
"description": "Snippets based on NG-ZORRO",
"version": "21.0.1",
"icon": "ng-zorro.png",
"publisher": "cipchk",
"license": "MIT",
"licenseUrl": "LICENSE",
"scripts": {
"resource": "bash ./scripts/resource-build.sh && node scripts/snippet.js",
"vscode:prepublish": "yarn run resource && npm run check-types && tsx ./scripts/esbuild.js --production",
"compile": "yarn run check-types && yarn run lint && tsx ./scripts/esbuild.js",
"watch": "tsx ./scripts/esbuild.js --watch",
"package": "yarn run lint && yarn run resource && yarn run check-types && tsx ./scripts/esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"publish": "vsce package --no-yarn"
},
"l10n": "./l10n",
"main": "./out/extension",
"browser": "./out/extension.web",
"homepage": "https://github.com/cipchk/ng-zorro-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cipchk/ng-zorro-vscode.git"
},
"bugs": {
"url": "https://github.com/cipchk/ng-zorro-vscode/issues",
"email": "cipchk@qq.com"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:html"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets.json"
}
],
"configuration": {
"title": "NG-ZORRO Extension Configuration",
"properties": {
"ng-zorro-vscode.hover": {
"description": "%ng-zorro-vscode.hover%",
"type": "boolean",
"default": true
},
"ng-zorro-vscode.inlineTemplate": {
"description": "%ng-zorro-vscode.inlineTemplate%",
"type": "boolean",
"default": true
},
"ng-zorro-vscode.signal": {
"description": "%ng-zorro-vscode.signal%",
"type": "boolean",
"default": false
},
"ng-zorro-vscode.officialDocument": {
"description": "%ng-zorro-vscode.officialDocument%",
"type": "boolean",
"default": true
}
}
}
},
"dependencies": {
"@vscode/l10n": "^0.0.18"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"klaw-sync": "^6.0.0",
"markdown-it": "^14.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vsce": "^2.15.0",
"vscode-snippet-generator": "^1.3.2",
"yaml-front-matter": "^4.1.1"
},
"packageManager": "yarn@4.9.2"
}