-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
149 lines (149 loc) · 4.37 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"publisher": "aisevim",
"name": "quipsum",
"displayName": "Quipsum",
"description": "Snippets: lorem ipsum generator and completely customizable",
"version": "0.0.3",
"private": true,
"packageManager": "pnpm@8.10.2",
"engines": {
"vscode": "^1.84.0",
"node": ">=18.0.0"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onStartupFinished"
],
"license": "MIT",
"author": "aisevim <a.aydnlp.pro@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/aisevim/quipsum.git"
},
"bugs": {
"url": "https://github.com/aisevim/quipsum/issues"
},
"icon": "docs/assets/logo-mini.png",
"main": "./dist/extension.js",
"keywords": [
"lorem",
"lorem ipsum",
"lorem generator",
"lorem custom",
"text generator",
"snippets"
],
"galleryBanner": {
"color": "#fee7f0",
"theme": "light"
},
"contributes": {
"configuration": {
"title": "Quipsum",
"properties": {
"quipsum.triggerText": {
"type": "string",
"default": "lorem",
"description": "The keyword that triggers the generation of placeholder text when typed in the editor."
},
"quipsum.unit": {
"type": "string",
"default": "sentences",
"enum": [
"sentences",
"words",
"paragraphs"
],
"description": "The default unit for the 'quipsum.triggerText' command in the extension."
},
"quipsum.units.sentences": {
"type": "string",
"default": "s",
"description": "The unit symbol for sentences in the 'quipsum.triggerText' command."
},
"quipsum.units.words": {
"type": "string",
"default": "w",
"description": "The unit symbol for words in the 'quipsum.triggerText' command."
},
"quipsum.units.paragraphs": {
"type": "string",
"default": "p",
"description": "The unit symbol for paragraphs in the 'quipsum.triggerText' command."
},
"quipsum.count": {
"type": "integer",
"default": 1,
"description": "The default count for the 'quipsum.triggerText' command in the extension.",
"minimum": 1
},
"quipsum.suffix": {
"type": "string",
"default": "\n",
"description": "Line ending"
},
"quipsum.paragraphLowerBound": {
"type": "integer",
"default": 3,
"description": "Min. number of sentences per paragraph.",
"minimum": 0
},
"quipsum.paragraphUpperBound": {
"type": "integer",
"default": 7,
"description": "Max. number of sentences per paragraph.",
"minimum": 1
},
"quipsum.sentenceLowerBound": {
"type": "integer",
"default": 5,
"description": "Min. number of words per sentence.",
"minimum": 0
},
"quipsum.sentenceUpperBound": {
"type": "integer",
"default": 15,
"description": "Max. number of words per sentence.",
"minimum": 1
}
}
}
},
"scripts": {
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"release:patch": "standard-version patch && pnpm run publish",
"release:minor": "standard-version minor && pnpm run publish",
"release:major": "standard-version major && pnpm run publish",
"vscode:prepublish": "pnpm run package",
"publish": "vsce publish --no-dependencies"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"@vscode/vsce": "^2.22.0",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"lorem-ipsum": "^2.0.8"
}
}