-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 4.57 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 4.57 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@keenthemes/ktui",
"version": "1.2.7",
"description": "Free & Open-Source Tailwind UI Components by Keenthemes",
"homepage": "https://ktui.io",
"repository": {
"type": "git",
"url": "git+https://github.com/keenthemes/ktui.git"
},
"keywords": [
"reui",
"keenthemes",
"tailwind",
"tailwind css",
"tailwind examples",
"tailwind components",
"tailwind application",
"tailwind dashboard",
"tailwind data management",
"tailwind layouts",
"tailwind javascript",
"tailwind typescript",
"tailwind react",
"tailwind nextjs",
"tailwind vue",
"tailwind angular",
"tailwind laravel",
"tailwind menu",
"tailwind megamenu",
"tailwind buttons",
"tailwind forms",
"tailwind tabs",
"tailwind datatable",
"tailwind scrollspy",
"tailwind scrollto",
"tailwind stepper",
"tailwind accordion",
"tailwind collapse",
"tailwind dismiss",
"tailwind toggle",
"tailwind reparent",
"tailwind theme",
"tailwind drawer",
"tailwind modal",
"tailwind tooltip",
"tailwind popover",
"tailwind image input",
"tailwind toggle password",
"tailwind scrollable",
"tailwind sticky",
"tailwind apexcharts",
"tailwind clipboard"
],
"author": "@keenthemes",
"types": "lib/esm/legacy.d.ts",
"main": "lib/cjs/legacy.js",
"module": "lib/esm/legacy.js",
"exports": {
".": {
"types": "./lib/esm/legacy.d.ts",
"import": "./lib/esm/legacy.js",
"require": "./lib/cjs/legacy.js"
},
"./core": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./init-all": {
"types": "./lib/esm/init-all.d.ts",
"import": "./lib/esm/init-all.js",
"require": "./lib/cjs/init-all.js"
},
"./components/*": {
"types": "./lib/esm/components/*/index.d.ts",
"import": "./lib/esm/components/*/index.js",
"require": "./lib/cjs/components/*/index.js"
},
"./src/*": "./src/*",
"./lib/*": "./lib/*",
"./styles.css": "./styles.css",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"license": "MIT",
"files": [
"dist",
"lib",
"src",
"styles",
"skills",
"styles.css",
"package.json",
"README.md",
"LICENSE.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"build": "concurrently \"npm run build:webpack\" \"npm run build:css:once\"",
"build:webpack": "webpack --mode=development",
"build:webpack:watch": "webpack --env watch=true --mode=development",
"build:prod": "webpack --env production --mode=production",
"build:lib": "tsc -p tsconfig.lib.json --outDir lib/cjs && tsc -p tsconfig.lib.json -m es6 --outDir lib/esm",
"build:css": "npx @tailwindcss/cli -i ./styles/main.css -o ./dist/styles.css --watch",
"build:css:once": "npx @tailwindcss/cli -i ./styles/main.css -o ./dist/styles.css",
"dev": "concurrently \"npm run build:webpack:watch\" \"npm run build:css\"",
"lint": "npx eslint 'src/**/*.ts' --max-warnings 110",
"lint:fix": "npx eslint 'src/**/*.ts' --fix",
"format": "npx prettier --write 'src/**/*.ts'",
"format:check": "npx prettier --check 'src/**/*.ts'",
"type-check": "npx tsc --noEmit --project tsconfig.lib.json",
"type-check:strict": "npx tsc --noEmit --project tsconfig.lib.json --strict",
"validate": "npm run lint && npm run format:check && npm run type-check",
"validate:strict": "npm run lint && npm run format:check && npm run type-check:strict",
"validate:fix": "npm run lint:fix && npm run format && npm run type-check",
"release:prep": "npm run lint && npm run format:check && npm run type-check && npm run test && npm run build:lib && npm run build",
"publish:npm": "node scripts/publish-npm.js",
"publish:github": "npm publish"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.23",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/ui": "^4.0.16",
"concurrently": "^9.1.2",
"eslint": "^10.0.0",
"eslint-plugin-prettier": "^5.4.0",
"jsdom": "^25.0.1",
"prettier": "^3.5.3",
"source-map-loader": "^5.0.0",
"tailwindcss": "^4.1.11",
"terser-webpack-plugin": "^5.3.17",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.18.0",
"vitest": "^4.0.16",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
},
"overrides": {
"brace-expansion": "^5.0.6",
"fast-uri": "^3.1.2",
"minimatch": "^10.2.3",
"postcss": "^8.5.14",
"rollup": "^4.59.0",
"serialize-javascript": "^7.0.3",
"terser-webpack-plugin": "^5.3.17"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}