-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 2.65 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
104
105
106
107
108
109
{
"name": "export-typescript",
"displayName": "export-typescript",
"description": "Create an index.ts file and export",
"version": "0.4.2",
"files": [
"out",
"images"
],
"publisher": "mscolnick",
"engines": {
"vscode": "^1.14.0"
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/mscolnick/export-typescript.git"
},
"categories": [
"Other"
],
"keywords": [
"tsx",
"file",
"template",
"typescript",
"react",
"barrel"
],
"activationEvents": [
"onCommand:export-typescript.replace-exports",
"onLanguage:typescript"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "export-typescript.replace-exports",
"title": "Export Typescript: Write exports"
}
],
"configuration": {
"type": "object",
"title": "Export Typescript",
"properties": {
"export-typescript.exportStar": {
"type": "boolean",
"default": true,
"description": "If true, 'export { * } ...' else 'export { Class } ...'"
},
"export-typescript.includes": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
},
"description": "Files to include in the export search, e.g. '*.{ts,tsx}'",
"default": [
"*.{ts,tsx}",
"*/index.{ts,tsx}"
]
},
"export-typescript.excludes": {
"type": [
"string",
"array"
],
"items": {
"type": "string"
},
"description": "Files to exclude in the export search, e.g. '*.{spec.ts,spec.tsx}'",
"default": [
"*.{spec.ts,spec.tsx}"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "rollup -c",
"dev": "npm run build -w",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"rollup": "^2.27.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/vscode": "^1.58.1",
"globby": "^11.0.1",
"typescript-parser": "^2.6.1"
}
}