forked from expo/vscode-expo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vscode-expo",
"displayName": "Expo Tools",
"version": "0.7.3",
"description": "Expo tools for vscode",
"keywords": [
"expo",
"vscode"
],
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Cedric van Putten",
"url": "https://bycedric.com"
},
"publisher": "byCedric",
"icon": "images/logo-marketplace.png",
"homepage": "https://github.com/expo/vscode-expo",
"bugs": {
"url": "https://github.com/expo/vscode-expo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/vscode-expo"
},
"main": "./out/src/extension.js",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Other"
],
"extensionKind": [
"workspace"
],
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "expo.config.preview",
"title": "Expo: Preview config"
},
{
"command": "expo.config.prebuild.preview",
"title": "Expo: Preview modifier"
},
{
"command": "expo.config.prebuild.preview.json",
"title": "Expo: Preview modifier as JSON"
}
]
},
"scripts": {
"postinstall": "patch-package",
"vscode:prepublish": "yarn clean && yarn build:production",
"start": "tsc -watch -p ./",
"build": "tsc -p ./",
"build:production": "webpack --mode production",
"clean": "git clean -xdf ./out ./.vscode-test *tsbuildinfo",
"test": "node ./out/test/jest/cli.js",
"lint": "eslint .",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@expo/config-plugins": "3.0.1",
"@expo/json-file": "^8.2.30",
"@expo/prebuild-config": "2.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.23",
"@types/json-schema-traverse": "^0.4.0",
"@types/node": "^14.6.0",
"@types/vscode": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"@vscode/test-electron": "^1.6.2",
"conventional-changelog-conventionalcommits": "^4.6.0",
"esbuild-loader": "^2.13.1",
"eslint": "^7.26.0",
"eslint-config-universe": "^7.0.1",
"find-up": "^5.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-environment-node": "^26.6.2",
"json-schema-traverse": "^1.0.0",
"json5": "^2.2.0",
"jsonc-parser": "^3.0.0",
"minimatch": "^3.0.4",
"parent-module": "^2.0.0",
"patch-package": "^6.4.7",
"prettier": "^2.1.1",
"raw-loader": "^4.0.2",
"semantic-release": "^17.4.3",
"typescript": "^4.2.4",
"vsce": "^1.88.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"xdl": "^59.0.46"
}
}