-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.82 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.82 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
{
"name": "solid-classmate",
"description": "A Solid tool to separate class name logic, create variants and manage styles.",
"version": "0.0.18",
"bugs": {
"url": "https://github.com/unterberg-dev/solid-classmate/issues"
},
"homepage": "https://github.com/unterberg-dev/solid-classmate/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unterberg-dev/solid-classmate.git"
},
"keywords": [
"solid",
"solid-js",
"classmate",
"typescript",
"dynamic-classnames",
"dynamic-styles",
"dynamic-variants",
"css",
"css-in-js",
"utility-first",
"utility-first-classnames",
"classname",
"classname-variants",
"frontend",
"ssr",
"tailwind",
"unocss",
"tailwind-merge"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"========= Root Actions": "",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist && rm -rf .localPack && rm -rf node_modules",
"lefthook": "lefthook install",
"========= Test": "",
"test-clear": "jest --clearCache",
"test:all": "npm run test-clear && npm run test:src",
"test:src": "npm run build && jest --testPathPattern=test/src",
"check:all": "tsc --noEmit",
"========= Lib": "",
"build:base": "npm run clean && npm run bundle",
"build": "npm run build:base && npm run postbuild",
"packLocal": "npm run build:base && npm run postbuild:packLocal",
"postbuild": "npx tsx postbuild.ts",
"postbuild:packLocal": "cross-env MODE=packLocal npx tsx postbuild.ts",
"bundle": "rollup -c",
"package": "npm run build && npm publish"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.js"
}
},
"peerDependencies": {
"solid-js": ">=1.8.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.30.1"
},
"dependencies": {
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "2.3.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^12.1.2",
"@solidjs/testing-library": "^0.8.8",
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"babel-preset-solid": "^1.8.12",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.10.1",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild-minify": "^1.2.0",
"solid-js": "^1.8.22",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}