-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.2 KB
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
{
"name": "@saifulapm/emmet-cli",
"version": "1.0.1",
"description": "Emmet CLI - Powerful command-line interface for Emmet abbreviation expansion",
"keywords": [
"emmet",
"abbreviation",
"html",
"css",
"jsx",
"cli",
"vscode",
"snippets",
"expansion",
"productivity"
],
"main": "lib/index.js",
"bin": {
"emmet": "bin/emmet.js"
},
"files": [
"bin/",
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"author": "Saiful Islam <saifulapm@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saifulapm/emmet-cli.git"
},
"homepage": "https://github.com/saifulapm/emmet-cli#readme",
"bugs": {
"url": "https://github.com/saifulapm/emmet-cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@vscode/emmet-helper": "^2.11.0",
"commander": "^11.1.0",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.6.3",
"vitest": "^1.0.0"
}
}