forked from shuriken-ui/tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.76 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
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
{
"name": "@shuriken-ui/tailwind",
"version": "3.1.2",
"license": "MIT",
"author": "Css Ninja <[email protected]> (https://cssninja.io)",
"repository": "shuriken-ui/tailwind",
"bugs": "https://github.com/shuriken-ui/tailwind/issues",
"homepage": "https://github.com/shuriken-ui/tailwind",
"keywords": [
"nuxt",
"nuxt3",
"ui",
"framework",
"library",
"components",
"tailwind",
"tailwindcss",
"design-system",
"module"
],
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"import": "./dist/preset.mjs",
"require": "./dist/preset.cjs"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.mjs",
"require": "./dist/config.cjs"
},
"./colors": {
"types": "./dist/colors.d.ts",
"import": "./dist/colors.mjs",
"require": "./dist/colors.cjs"
},
"./themes": {
"types": "./dist/themes.d.ts",
"import": "./dist/themes.mjs",
"require": "./dist/themes.cjs"
},
"./plugins": {
"types": "./dist/plugins/index.d.ts",
"import": "./dist/plugins/index.mjs",
"require": "./dist/plugins/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "unbuild",
"build-storybook": "storybook build",
"lint": "run-s lint:eslint:fix lint:prettier:fix",
"lint:prettier": "prettier --check \"./**/*.(ts|css|scss|md)\"",
"lint:prettier:fix": "prettier --write \"./**/*.(ts|css|scss|md)\"",
"lint:eslint": "eslint -c .eslintrc.cjs --ext .ts .",
"lint:eslint:fix": "eslint -c .eslintrc.cjs --fix --ext .ts .",
"test": "run-s lint:eslint lint:prettier test:vitest",
"test:vitest": "vitest",
"coverage": "vitest run --coverage",
"prepack": "pnpm run build",
"release": "run-s test release:*",
"release:standard-version": "standard-version",
"release:publish": "git push --follow-tags origin main && npm publish",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"defu": "^6.1.4",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@open-wc/lit-helpers": "0.6.0",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-themes": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/web-components": "^8.0.5",
"@storybook/web-components-vite": "^8.0.5",
"@types/node": "20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"autoprefixer": "^10.4.16",
"chromatic": "^10.2.1",
"commitlint": "^18.4.4",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "3.13.1",
"eslint-plugin-unicorn": "^50.0.1",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"lit": "^3.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"simple-git-hooks": "^2.9.0",
"standard-version": "^9.5.0",
"storybook": "^8.0.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.1.3",
"vitest-axe": "1.0.0-pre.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint -e -V "
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint -c .eslintrc.cjs --fix --ext .ts"
]
}
}