-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.95 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
{
"name": "@hyperse/tailwind-layer",
"version": "1.0.5",
"description": "Compile your tailwindcss components into tailwind plugins and enjoy full autocompletion!",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperse-io/tailwind-layer.git"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"twl": "bin/twl.mjs"
},
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"test": "run-s test:unit",
"test-task": "vitest run",
"test:unit": "vitest run",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty",
"changeset": "changeset",
"release": "yarn build && changeset publish",
"cz": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"chokidar": "^3.6.0",
"glob": "^11.0.0",
"postcss-js": "^4.0.1",
"sade": "^1.8.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "^1.0.10",
"@types/node": "^20.14.12",
"@types/postcss-js": "^4.0.4",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.8.0",
"husky": "9.1.3",
"lint-staged": "15.2.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"peerDependencies": {
"postcss": "^8.4.21",
"tailwindcss": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}