forked from htmlstreamofficial/preline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.69 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 3.69 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "preline",
"version": "4.1.3",
"description": "Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/*": "./dist/*",
"./css/*": "./css/*",
"./src/*": "./src/*",
"./non-auto": {
"types": "./dist/non-auto.d.ts",
"import": "./dist/non-auto.mjs",
"require": "./dist/non-auto.js"
},
"./plugins/*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
},
"./helpers/*": {
"types": "./dist/helper-*.d.ts",
"import": "./dist/helper-*.mjs",
"require": "./dist/helper-*.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.js"
},
"./variants.css": "./variants.css",
"./package.json": "./package.json"
},
"sideEffects": [
"./dist/index.js",
"./dist/index.mjs",
"./dist/helper-clipboard.js",
"./dist/helper-clipboard.mjs"
],
"bin": {
"preline-theme-generator": "./skills/theme-generator/scripts/generate-theme.js"
},
"repository": "https://github.com/htmlstreamofficial/preline.git",
"homepage": "https://preline.co",
"keywords": [
"preline",
"html",
"css",
"javascript",
"typescript",
"webpack",
"agent skills",
"tailwind",
"tailwind css",
"tailwind ui",
"tailwind library",
"tailwind examples",
"tailwind templates",
"tailwind plugins",
"tailwind components",
"tailwind components library",
"tailwind elements",
"tailwind sections",
"tailwind blocks",
"tailwind colors",
"tailwind css react",
"tailwind css next",
"tailwind css nextjs",
"tailwind css vue",
"tailwind css nuxtjs",
"tailwind css angular",
"tailwind css astro",
"tailwind css solidjs",
"tailwind css qwik",
"tailwind css svelte",
"tailwind css remix",
"tailwind css laravel",
"tailwind css vite",
"tailwind css hugo",
"tailwind css adonis",
"tailwind css adonisjs",
"tailwind css livewire",
"tailwind css symfony",
"tailwind css rails",
"tailwind css phoenix",
"tailwind css phoenix liveview",
"tailwind css ember",
"tailwind css flask",
"tailwind css django",
"tailwind css express",
"tailwind css blazor",
"tailwind css aspnet",
"tailwind css asp.net core",
"theme generator",
"preline theme generator"
],
"author": "Preline Labs Ltd.",
"license": "Licensed under MIT and Preline UI Fair Use License",
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "webpack --config webpack.config.js --watch",
"watch:mjs": "webpack --config webpack.config.mjs.js --watch",
"build:js": "webpack --config webpack.config.js",
"build:mjs": "webpack --config webpack.config.mjs.js",
"build": "npm run build:js && npm run build:mjs && npm run generate-dts",
"pretty": "prettier --write --cache \"./**/*.{js,jsx,ts,tsx,json}\"",
"generate-dts": "tsc -p tsconfig.dts.json && node ./scripts/flatten-dts.js"
},
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@types/culori": "^4.0.1",
"apexcharts": "^4.5.0",
"culori": "^4.0.2",
"datatables.net-dt": "^2.2.2",
"dropzone": "^6.0.0-beta.2",
"nouislider": "^15.8.1",
"vanilla-calendar-pro": "^3.0.4"
},
"devDependencies": {
"@types/dropzone": "5.7.9",
"@types/jquery": "^3.5.30",
"@types/lodash": "^4.17.6",
"@types/prismjs": "^1.26.4",
"@types/vinyl": "^2.0.12",
"dts-bundle-generator": "^9.0.0",
"prettier": "^3.0.1",
"source-map-loader": "^4.0.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack-cli": "^5.1.4"
}
}