-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "polychroma",
"version": "2.1.3",
"private": true,
"description": "Generate better CSS gradients using alternative colour spaces & Bezier interpolation.",
"author": "Jeff Nelson (https://tidaltheory.io)",
"type": "module",
"scripts": {
"build": "nuxt build",
"changeset": "changeset add",
"dev": "nuxt dev",
"fmt": "oxfmt",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint '**/*.{js,vue}' --fix --ignore-pattern '.nuxt/**' --ignore-pattern 'dist/**' --ignore-pattern 'static/**'",
"lint:styles": "stylelint '**/*.{css,vue}'",
"prepare": "npx simple-git-hooks",
"preview": "nuxt preview"
},
"dependencies": {
"chroma-js": "^2.6.0",
"pinia": "3.0.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.3.0",
"@changesets/cli": "2.14.1",
"@nuxtjs/tailwindcss": "6.14.0",
"@pinia/nuxt": "0.11.3",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "25.2.0",
"@vite-pwa/nuxt": "1.1.0",
"@zazen/eslint-config": "7.4.1",
"@zazen/stylelint-config": "5.1.0",
"autoprefixer": "^10.4.20",
"eslint": "9.39.2",
"eslint-plugin-vue": "10.7.0",
"lint-staged": "10.5.x",
"nuxt": "4.3.0",
"oxfmt": "0.27.0",
"postcss": "^8.4.49",
"postcss-html": "1.8.1",
"simple-git-hooks": "2.13.1",
"stylelint": "17.1.0",
"tailwindcss": "^3.4.17",
"tailwindcss-capsize": "4.0.1",
"typescript": "^5.7.2",
"vue": "3.5.27"
},
"overrides": {
"@stylistic/eslint-plugin": "5.7.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,vue}": "eslint --fix",
"*.{css,vue}": "stylelint --fix",
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"engines": {
"node": ">=18.0.0"
}
}