forked from techniq/layerstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "@layerstack/tailwind",
"description": "TODO",
"author": "Sean Lynch <techniq35@gmail.com>",
"license": "MIT",
"repository": "techniq/layerstack",
"version": "2.0.0-next.19",
"scripts": {
"dev": "rimraf dist && tsc -p tsconfig.build.json --watch",
"build": "rimraf dist && tsc -p tsconfig.build.json && pnpm build:css && cp -r ./src/lib/css dist",
"build:css": "tsc --noEmit && tsx ./src/lib/cli/index.ts",
"preview": "vite preview",
"package": "svelte-package",
"prepublishOnly": "svelte-package",
"check": "tsc --noEmit",
"check:watch": "tsc --noEmit --watch",
"test:unit": "TZ=UTC+4 vitest",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@skeletonlabs/tw-plugin": "^0.4.1",
"@sveltejs/package": "^2.3.11",
"@types/culori": "^2.1.1",
"@types/d3-array": "^3.2.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.1",
"culori": "^4.0.1",
"daisyui": "^4.12.24",
"prettier": "^3.5.3",
"rimraf": "6.0.1",
"tailwindcss": "^4.1.5",
"tslib": "^2.8.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"type": "module",
"dependencies": {
"@layerstack/utils": "workspace:^",
"clsx": "^2.1.1",
"d3-array": "^3.2.4",
"tailwind-merge": "^3.2.0"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./daisy": "./dist/daisy.js",
"./skeleton": "./dist/skeleton.js",
"./*.css": "./dist/css/*.css",
"./themes/basic.css": "./dist/css/themes/basic.css",
"./themes/*.css": "./dist/css/themes/generated/*.css"
},
"files": [
"dist"
]
}