-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 2.9 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
110
111
112
113
{
"name": "flutter-assets-gen2",
"displayName": "Flutter Assets Gen",
"description": "A plugin to generate flutter assets class file by pubspec.yaml",
"author": {
"name": "weekit",
"email": "121727393@qq.com"
},
"icon": "images/icon.png",
"keywords": [
"generate",
"flutter assets",
"flutter",
"vscode",
"assets",
"watch"
],
"repository": {
"type": "git",
"url": "https://github.com/weekitmo/flutter-assets-gen.git"
},
"publisher": "weekit",
"version": "0.1.8",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:flutter-assets-gen.watch",
"onCommand:flutter-assets-gen.generate"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "flutter-assets-gen.watch",
"title": "Watch",
"category": "Flutter Assets"
},
{
"command": "flutter-assets-gen.stopWatch",
"title": "Stop Watch",
"category": "Flutter Assets"
},
{
"command": "flutter-assets-gen.generate",
"title": "Generate",
"category": "Flutter Assets"
}
]
},
"scripts": {
"commit": "git-cz",
"version": "auto-changelog -p && git add CHANGELOG.md",
"emoji-cp": "cp ./gitmojis.json ./node_modules/commitlint-plugin-gitmoji/lib/gitmojis.json",
"prettier": "prettier --parser=typescript --write ./src/**/*.ts",
"vscode:prepublish": "yarn run compile",
"precompile": "rm -rf out && node ./dir.js && cp -r templates/ out/templates/",
"compile": "tsc -p ./",
"prewatch": "rm -rf out && node ./dir.js && cp -r templates/ out/templates/",
"watch": "tsc -w -p ./",
"lint": "eslint src --ext ts",
"start": "node ./out/extension.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.ts?(x)": [
"yarn prettier"
]
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/core": "13.1.0",
"@types/glob": "7.1.3",
"@types/js-yaml": "4.0.2",
"@types/lodash": "4.14.172",
"@types/mocha": "8.2.2",
"@types/node": "14.14.31",
"@types/vscode": "1.59.0",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"auto-changelog": "2.3.0",
"commitizen": "4.2.4",
"commitlint-config-cz": "0.13.2",
"commitlint-config-gitmoji": "2.2.5",
"cz-customizable": "6.3.0",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "4.3.7",
"lint-staged": "10.5.2",
"prettier": "2.3.2",
"typescript": "4.3.2"
},
"dependencies": {
"chokidar": "3.5.2",
"glob": "7.1.7",
"js-yaml": "4.1.0",
"lodash": "4.17.21"
}
}