-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.84 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
{
"name": "vscode-lottie-preview",
"displayName": "VSCode Lottie Preview",
"description": "Preview Lottie in Visual Studio Code",
"version": "1.2.3",
"publisher": "regchiu",
"engines": {
"vscode": "^1.85.0"
},
"icon": "media/images/lottie-logo.png",
"categories": [
"Other"
],
"keywords": [
"lottie",
".json",
".lottie"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-lottie-preview.openJson",
"title": "Preview .json Lottie",
"category": "Lottie Preview",
"icon": "$(open-preview)"
}
],
"menus": {
"editor/title": [
{
"command": "vscode-lottie-preview.openJson",
"when": "isLottie",
"group": "navigation"
}
]
},
"customEditors": [
{
"viewType": "vscode-lottie-preview.dotlottie",
"displayName": "Dotlottie",
"selector": [
{
"filenamePattern": "*.lottie"
}
]
}
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/regchiu/vscode-lottie-preview"
},
"scripts": {
"install:all": "npm install && cd webview-ui && npm install",
"dev:webview": "cd webview-ui && npm run dev",
"build:webview": "cd webview-ui && npm run build",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"deploy": "vsce publish",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@stylistic/eslint-plugin": "^1.5.3",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.26.0",
"commitizen": "^4.3.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"inquirer": "^9.2.22",
"lint-staged": "^15.2.4",
"prettier": "3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@dotlottie/player-component": "^2.7.12",
"@lottiefiles/lottie-js": "^0.4.2"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}