-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "rnp-snippets",
"displayName": "React Native Paper Snippets",
"description": "Cross-platform Material Design for React Native.",
"private": true,
"version": "0.0.1",
"publisher": "arpitBhalla",
"keywords": [
"snippets",
"react-native",
"react-native-paper"
],
"contributors": [
{
"name": "Arpit Bhalla",
"url": "https://github.com/arpitBhalla"
}
],
"main": "./build/extension.js",
"scripts": {
"build": "ts-node scripts/generateREADME.ts && prettier --write README.md ",
"prerelease": "npm run build && git add . && git commit -m 'PreRelease' && release-it ",
"release": "vsce publish",
"prebuild": "tsc",
"test-compile": "tsc -p ./"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arpitBhalla/rnp-snippets"
},
"icon": "icon.jpg",
"engines": {
"vscode": "^0.10.5"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"contributes": {
"commands": [
{
"command": "extension.rnpButton",
"title": "Insert Button Component",
"category": "React Native Paper Snippets"
}
]
},
"devDependencies": {
"@types/jscodeshift": "^0.11.0",
"@types/react-dom": "^17.0.3",
"@types/shallowequal": "^1.1.1",
"esbuild": "^0.11.18",
"prettier": "^2.2.1",
"release-it": "^14.6.1",
"ts-node": "^9.1.1",
"vsce": "^1.88.0",
"vscode": "^1.1.37"
},
"dependencies": {
"require-glob": "^3.2.0",
"jscodeshift": "^0.12.0",
"jscodeshift-choose-parser": "^2.0.0",
"shallowequal": "^1.1.0"
}
}