-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 985 Bytes
/
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
{
"name": "@emmetio/monaco-plugin",
"version": "1.0.0",
"description": "",
"main": "./dist/emmet.cjs.js",
"module": "./dist/emmet.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"keywords": [],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "ISC",
"dependencies": {
"@emmetio/action-utils": "^1.2.1",
"@emmetio/css-matcher": "^1.0.2",
"@emmetio/html-matcher": "^1.3.0",
"emmet": "^2.1.6"
},
"devDependencies": {
"@emmetio/math-expression": "^1.0.4",
"@rollup/plugin-node-resolve": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"monaco-editor": "^0.21.2",
"rollup": "^2.32.1",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}