-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
133 lines (133 loc) · 3.53 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
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
{
"name": "flyonui",
"version": "1.2.0",
"description": "The easiest, free and open-source Tailwind CSS component library with semantic classes.",
"author": "ThemeSelection",
"license": "MIT",
"homepage": "https://flyonui.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/themeselection/flyonui.git"
},
"bugs": {
"url": "https://github.com/themeselection/flyonui/issues"
},
"keywords": [
"flyonui",
"flyon",
"html",
"design-system",
"css",
"components",
"ui-library",
"javascript",
"typescript",
"framework",
"tailwind",
"tailwindcss",
"theming",
"postcss",
"ui",
"design",
"tailwind examples",
"tailwind components",
"tailwind components library",
"tailwind elements",
"tailwind library",
"tailwind sections",
"tailwind css",
"tailwind ui"
],
"main": "src/index.js",
"typings": "src/index.d.ts",
"types": "src/index.d.ts",
"files": [
"src/lib/**/*.js",
"dist/**/*.js",
"dist/**/*.mjs",
"dist/js/**/*.ts",
"dist/{themes,styled,unstyled,full}.css",
"src/js/",
"src/index.js",
"src/theming/*.js",
"src/theming/*.d.ts",
"src/index.d.ts",
"./plugin.js",
"./plugin.ts",
"./dts-config.js",
"./tsconfig.json",
"./tsconfig.mjs.json",
"./webpack.config.mjs.js",
"./webpack.config.js",
"./global.d.ts",
"./flyonui.d.ts",
"./flyonui.js",
"./flyonui.mjs",
"./LICENSE",
"./THIRD_PARTY_LICENSES",
"./README.md"
],
"engines": {
"node": ">=16.9.0"
},
"browserslist": [
"> 7%"
],
"publishConfig": {
"access": "public",
"branches": [
"main"
]
},
"scripts": {
"init": "npm install && npm run build",
"pretty": "prettier --write \"./**/*.{ts,tsx,json}\" --ignore-path .prettierignore",
"prettier": "prettier --write '**/*.{md,html,css,js,jsx,ts,tsx}' --config .prettierrc --ignore-path .prettierignore",
"watch": "npm-run-all --parallel watch:*",
"watch:js": "webpack --watch",
"watch:mjs": "webpack --config webpack.config.mjs.js --watch",
"watch:src": "node src/watch",
"build": "npm-run-all --parallel build:*",
"build:src": "node src/build",
"build:js": "webpack --mode production",
"build:mjs": "webpack --config webpack.config.mjs.js --mode production",
"generate-dts": "dts-bundle-generator --config dts-config.js",
"dist": "npm run build && npm run generate-dts",
"publish:alpha": "npm publish --tag=alpha",
"alpha": "npm run release -- --alpha && npm publish --tag=alpha"
},
"devDependencies": {
"@types/clipboard": "^2.0.7",
"@types/dropzone": "^5.7.8",
"@types/jquery": "^3.5.30",
"@types/lodash": "^4.17.6",
"apexcharts": "^4.1.0",
"autoprefixer": "^10.4.19",
"commit-and-tag-version": "^12.0.0",
"datatables.net": "^2.1.3",
"dts-bundle-generator": "^9.0.0",
"nouislider": "^15.8.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"prejss-cli": "0.3.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"source-map-loader": "^5.0.0",
"tailwindcss": "^3.4.6",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"watch": "^1.0.2",
"webpack": "^5.90.2",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"css-selector-tokenizer": "^0.8.0",
"culori": "^4.0.1",
"picocolors": "^1.1.1",
"postcss-js": "^4.0.1"
}
}