-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 984 Bytes
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
{
"name": "emmet-monaco-es",
"version": "5.7.0",
"description": "emmet plugin for monaco-editor",
"keywords": [
"emmet",
"emmet-plugin",
"monaco-editor"
],
"main": "dist/emmet-monaco.common.js",
"module": "dist/emmet-monaco.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"watch": "rollup -c --watch",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/troy351/emmet-monaco-es.git"
},
"sideEffects": false,
"license": "MIT",
"author": "Troy",
"homepage": "https://github.com/troy351/emmet-monaco-es",
"peerDependencies": {
"monaco-editor": ">=0.22.0"
},
"dependencies": {
"emmet": "^2.4.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"rollup": "^4.50.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
}
}