-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.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
{
"name": "zustic-snippets",
"displayName": "Zustic Snippets",
"description": "⚡ Lightning-fast Zustic state management snippets for JavaScript & TypeScript",
"version": "1.0.6",
"author": "rezaul",
"publisher": "rezaul",
"icon": "assets/logo.jpg",
"main": "./extension.js",
"scripts": {
"build": "vsce package"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@vscode/vsce": "^2.24.0",
"react": "^19.2.7",
"react-native": "^0.86.0",
"react-native-gesture-handler": "^3.0.1",
"react-native-reanimated": "^4.4.1",
"react-native-safe-area-context": "^5.8.0",
"react-native-svg": "^15.15.5",
"zustic": "^1.1.6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DeveloperRejaul/zustic-snippets"
},
"bugs": {
"url": "https://github.com/DeveloperRejaul/zustic-snippets/issues"
},
"homepage": "https://github.com/DeveloperRejaul/zustic-snippets#readme",
"keywords": [
"snippets",
"javascript",
"typescript",
"productivity",
"code-snippets"
],
"engines": {
"vscode": "^1.100.0"
},
"activationEvents": [
"onCommand:myExtension.createConfig",
"onCommand:myExtension.reactNativeStructure"
],
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "javascriptreact",
"path": "./snippets/javascript.json"
},
{
"language": "typescriptreact",
"path": "./snippets/typescript.json"
}
],
"commands": [
{
"command": "myExtension.createConfig",
"title": "Zustic: Create VS Code Configuration"
},
{
"command": "myExtension.reactNativeStructure",
"title": "Zustic: Create React native structure"
}
]
}
}