-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.09 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
{
"name": "super-code-generator",
"displayName": "Super Code Generator",
"description": "A powerful, fast, and scalable code generator that saves you time",
"publisher": "tenjojeremy",
"version": "4.3.0",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"keywords": [
"generator",
"component",
"react",
"vue",
"template"
],
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run -S build -- --sourcemap",
"build:watch": "npm run -S build -- --watch",
"build": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --external:vscode --external:esbuild --format=cjs --platform=node",
"lint": "eslint",
"compile-tests": "tsc -p tsconfig.test.json",
"watch-tests": "tsc -p tsconfig.test.json -w",
"test": "vscode-test",
"tests:ts-types": "tsc -p tsconfig.check.types.json",
"types:generate": "tsc -p tsconfig.generate.types.json",
"pretest": "npm run compile-tests",
"prettify": "prettier --write '{**/*,*}.{js,jsx,json}'",
"npm:publish": "node ./scripts/publishToNpm/publishToNpm.cjs",
"deploy": "npm run types:generate && npm run tests:ts-types && npm version minor && vsce publish && npm run npm:publish"
},
"icon": "assets/images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/jeremytenjo/super-code-generator"
},
"activationEvents": [
"onCommand:superCodeGenerator.generateCode",
"onCommand:superCodeGenerator.generateCodeInFolder"
],
"contributes": {
"configuration": {
"title": "Super Code Generator",
"properties": {
"superCodeGenerator.schemaFilePath": {
"type": "string",
"default": "superCodeGen.schema.ts",
"description": "Schema file path"
},
"superCodeGenerator.prettierConfigFilePath": {
"type": "string",
"default": ".prettierrc.js",
"description": "Prettier config file path (Optional)"
}
}
},
"commands": [
{
"command": "superCodeGenerator.generateCode",
"title": "Super Code Gen: Generate Code"
},
{
"command": "superCodeGenerator.generateCodeInFolder",
"title": "Super Code Gen: Generate Code in folder"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "superCodeGenerator.generateCode",
"group": "navigation@1"
}
]
}
},
"dependencies": {
"change-case": "^4.1.2",
"esbuild": "^0.12.29",
"lower-case": "^2.0.2",
"prettier": "^2.3.0"
},
"devDependencies": {
"@eslint/js": "8.56.0",
"@types/glob": "^7.1.3",
"@types/mocha": "8.2.3",
"@types/node": "^12.11.7",
"@types/prettier": "2.3.0",
"@types/vscode": "^1.95.0",
"@vscode/test-cli": "0.0.10",
"@vscode/test-electron": "2.4.1",
"eslint": "^8.56.0",
"glob": "^7.1.7",
"mocha": "8.4.0",
"typescript": "5.7.2",
"typescript-eslint": "7.2.0",
"vsce": "2.15.0",
"vscode-test": "^1.5.0"
}
}