-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 1.8 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
{
"name": "tailwindcss-color-suite",
"version": "0.7.0",
"author": "Jeff Schofield <jeff@jeffschofield.com>",
"keywords": [
"vite",
"tailwind",
"color",
"palette",
"generator",
"theme"
],
"repository": "github:ShiftLimits/tailwindcss-color-suite",
"bugs": {
"url": "https://github.com/ShiftLimits/tailwindcss-color-suite/issues",
"email": "jeff@jeffschofield.com"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./app": {
"require": "./dist/app.main/index.js",
"import": "./dist/app.main/index.mjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"files": [
"bin/*",
"dist/**/*",
"CHANGELOG.md",
"client.d.ts"
],
"scripts": {
"build": "vite build && tsup",
"dev": "vite",
"test": "jest"
},
"bin": {
"tailwindcss-color-suite": "bin/cli.js"
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/body-parser": "^1.19.2",
"@types/jest": "^28.1.6",
"@types/node": "^16.7.10",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/compiler-sfc": "^3.2.37",
"autoprefixer": "^10.4.8",
"body-parser": "^1.20.0",
"jest": "^28.1.3",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.7",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.3",
"vite": "^3.0.4",
"vite-plugin-svg-icons": "^2.0.1",
"vue": "^3.2.39",
"vue-router": "^4.1.5",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"tailwindcss": "^3.0.0",
"vite": "^2.0.0||^3.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"fit-curve": "^0.2.0"
}
}