forked from remcohaszing/monaco-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
{
"name": "monaco-tailwindcss",
"version": "0.6.1",
"description": "Tailwindcss integration for Monaco editor",
"type": "module",
"scripts": {
"prepack": "node build.js",
"start:webpack-demo": "pnpm --filter examples/webpack-demo start"
},
"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.2.0",
"@ctrl/tinycolor": "^3.6.1",
"@csstools/css-parser-algorithms": "^2.7.1",
"@csstools/css-tokenizer": "^2.4.1",
"@csstools/media-query-list-parser": "^2.1.13",
"color-name": "^2.0.0",
"css.escape": "^1.5.1",
"culori": "^4.0.1",
"didyoumean": "^1.2.2",
"dlv": "^1.1.3",
"line-column": "^1.0.2",
"monaco-languageserver-types": "^0.4.0",
"monaco-marker-data-provider": "^1.2.4",
"monaco-types": "^0.1.0",
"monaco-worker-manager": "^2.0.1",
"moo": "^0.5.2",
"postcss": "^8.4.49",
"postcss-js": "^4.0.1",
"postcss-nested": "^6.2.0",
"postcss-selector-parser": "^6.1.2",
"semver": "^7.6.3",
"sift-string": "^0.0.2",
"stringify-object": "^5.0.0",
"tailwindcss": "^3.4.15",
"tmp-cache": "^1.1.0",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.5"
},
"peerDependencies": {
"monaco-editor": ">=0.36"
},
"devDependencies": {
"@tailwindcss/language-service": "0.0.35",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-remcohaszing": "^10.0.1",
"prettier": "^3.4.1",
"remark-cli": "^12.0.1",
"remark-preset-remcohaszing": "^3.1.1",
"typescript": "^5.7.2",
"vscode-languageserver-protocol": "^3.17.5"
},
"overrides": {
"@tailwindcss/language-service": {
"postcss": "^8.4.49"
}
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"tailwindcss.worker.js",
"tailwindcss.worker.js.map",
"tailwindcss.worker.d.ts"
],
"exports": {
".": "./index.js",
"./tailwindcss.worker": "./tailwindcss.worker.js",
"./tailwindcss.worker.js": "./tailwindcss.worker.js"
}
}