-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 965 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 965 Bytes
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
{
"name": "tailwindcss-lib",
"author": {
"email": "andres.berrios.j@gmail.com",
"name": "Andres Berrios",
"url": "https://github.com/andresberrios"
},
"repository": {
"url": "https://github.com/andresberrios/tailwindcss-lib",
"type": "git"
},
"version": "1.1.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/tailwindcss-lib.umd.cjs",
"module": "./dist/tailwindcss-lib.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/tailwindcss-lib.js",
"require": "./dist/tailwindcss-lib.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json && rm -r dist/lib dist/stubs"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.3",
"@types/node": "^18.13.0",
"node-stdlib-browser": "^1.2.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}