helix-twcss 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "helix-twcss",
3
+ "description": "Tailwind CSS Language Server - Temp LSP for Helix Only",
4
+ "license": "MIT",
5
+ "version": "0.0.13",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/tailwindlabs/tailwindcss-intellisense.git",
9
+ "directory": "packages/tailwindcss-language-server"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/tailwindlabs/tailwindcss-intellisense/issues"
13
+ },
14
+ "homepage": "https://github.com/tailwindlabs/tailwindcss-intellisense/tree/HEAD/packages/tailwindcss-language-server#readme",
15
+ "scripts": {
16
+ "build": "npm run clean && npm run _esbuild && npm run hashbang",
17
+ "_esbuild": "node ../../esbuild.js src/server.ts --outfile=bin/tailwindcss-language-server --external=pnpapi --external=lightningcss --external=@tailwindcss/oxide --minify",
18
+ "clean": "rimraf bin",
19
+ "hashbang": "node scripts/hashbang.mjs",
20
+ "create-notices-file": "node scripts/createNoticesFile.mjs",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "bin": {
24
+ "tailwindcss-language-server": "./bin/tailwindcss-language-server"
25
+ },
26
+ "files": [
27
+ "bin",
28
+ "ThirdPartyNotices.txt"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "devDependencies": {
34
+ "@parcel/watcher": "2.0.3",
35
+ "@tailwindcss/aspect-ratio": "0.4.2",
36
+ "@tailwindcss/container-queries": "0.1.0",
37
+ "@tailwindcss/forms": "0.5.3",
38
+ "@tailwindcss/line-clamp": "0.4.2",
39
+ "@tailwindcss/typography": "0.5.7",
40
+ "@types/debounce": "1.2.0",
41
+ "@types/node": "14.14.34",
42
+ "@types/vscode": "1.65.0",
43
+ "chokidar": "3.5.1",
44
+ "color-name": "1.1.4",
45
+ "culori": "0.20.1",
46
+ "debounce": "1.2.0",
47
+ "deepmerge": "4.2.2",
48
+ "dlv": "1.1.3",
49
+ "dset": "3.1.2",
50
+ "enhanced-resolve-301": "0.0.1",
51
+ "fast-glob": "3.2.4",
52
+ "find-up": "5.0.0",
53
+ "is-builtin-module": "3.2.1",
54
+ "jest": "25.5.4",
55
+ "klona": "2.0.4",
56
+ "license-checker": "25.0.1",
57
+ "minimatch": "5.1.4",
58
+ "normalize-path": "3.0.0",
59
+ "pkg-up": "3.1.0",
60
+ "postcss": "8.3.9",
61
+ "postcss-load-config": "3.0.1",
62
+ "postcss-selector-parser": "6.0.2",
63
+ "prettier": "2.3.0",
64
+ "resolve": "1.20.0",
65
+ "rimraf": "3.0.2",
66
+ "stack-trace": "0.0.10",
67
+ "tailwindcss": "3.3.0",
68
+ "typescript": "4.6.4",
69
+ "vscode-css-languageservice": "5.4.1",
70
+ "vscode-languageserver": "8.0.2",
71
+ "vscode-languageserver-textdocument": "1.0.7",
72
+ "vscode-uri": "3.0.2"
73
+ }
74
+ }