-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.36 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
{
"name": "monaco-tailwindcss",
"version": "0.6.1",
"description": "Tailwindcss integration for Monaco editor",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"tailwindcss.worker.js",
"tailwindcss.worker.js.map",
"tailwindcss.worker.d.ts"
],
"type": "module",
"workspaces": [
"examples/*"
],
"scripts": {
"prepack": "node build.js",
"start": "npm --workspace demo start"
},
"exports": {
".": "./index.js",
"./tailwindcss.worker": "./tailwindcss.worker.js",
"./tailwindcss.worker.js": "./tailwindcss.worker.js"
},
"repository": "remcohaszing/monaco-tailwindcss",
"keywords": [
"monaco",
"monaco-editor",
"tailwind",
"tailwindcss"
],
"author": "Remco Haszing <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/remcohaszing/monaco-tailwindcss/issues",
"homepage": "https://monaco-tailwindcss.js.org",
"funding": "https://github.com/sponsors/remcohaszing",
"dependencies": {
"@alloc/quick-lru": "^5.0.0",
"@ctrl/tinycolor": "^3.0.0",
"@csstools/css-parser-algorithms": "^2.0.0",
"@csstools/css-tokenizer": "^2.0.0",
"@csstools/media-query-list-parser": "^2.0.0",
"color-name": "^2.0.0",
"css.escape": "^1.0.0",
"culori": "^4.0.0",
"didyoumean": "^1.0.0",
"dlv": "^1.0.0",
"line-column": "^1.0.0",
"monaco-languageserver-types": "^0.4.0",
"monaco-marker-data-provider": "^1.0.0",
"monaco-types": "^0.1.0",
"monaco-worker-manager": "^2.0.0",
"moo": "^0.5.0",
"postcss": "^8.0.0",
"postcss-js": "^4.0.0",
"postcss-nested": "^6.0.0",
"postcss-selector-parser": "^6.0.0",
"semver": "^7.0.0",
"sift-string": "^0.0.2",
"stringify-object": "^5.0.0",
"tailwindcss": "^3.0.0",
"tmp-cache": "^1.0.0",
"vscode-languageserver-textdocument": "^1.0.0",
"vscode-languageserver-types": "^3.0.0"
},
"peerDependencies": {
"monaco-editor": ">=0.36"
},
"devDependencies": {
"@tailwindcss/language-service": "0.0.32",
"esbuild": "^0.21.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"typescript": "^5.0.0",
"vscode-languageserver-protocol": "^3.0.0"
},
"overrides": {
"@tailwindcss/language-service": {
"postcss": "^8.0.0"
}
}
}