-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
{
"name": "vite-vanilla-js",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "Vite Vanilla JS",
"author": {
"name": "Timeless",
"email": "[email protected]",
"url": "https://timeless.co/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/vite-vanilla-js.git"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.0.0"
},
"scripts": {
"build:preview": "pnpm build && pnpm preview",
"build": "vite build",
"clean": "node scripts/clean.js",
"dedupe:packages": "pnpm dedupe --check",
"dev": "vite --host",
"fix": "pnpm run \"/^fix:.*/\"",
"fix:css": "stylelint '**/*.css' --fix --cache --ignore-path .gitignore --color -f verbose",
"fix:eslint": "eslint --cache --report-unused-disable-directives --color --fix .",
"fix:spelling": "node scripts/update-cspell-words.js",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:css": "stylelint --cache --ignore-path .gitignore --color -f verbose '**/*.css'",
"lint:eslint": "eslint --cache --report-unused-disable-directives --color .",
"lint:knip": "knip --production",
"lint:spelling": "cspell --dot --gitignore --cache --no-progress --show-context check \"**/*\"",
"prepare": "is-ci || husky",
"preview": "vite preview",
"release": "release-it --ci"
},
"devDependencies": {
"@antfu/eslint-config": "4.1.0",
"@inquirer/prompts": "7.2.3",
"@octokit/core": "6.1.3",
"@release-it/conventional-changelog": "10.0.0",
"@tailwindcss/vite": "^4.0.0",
"@vitejs/plugin-legacy": "6.0.0",
"cspell": "8.17.2",
"dotenv": "16.4.7",
"eslint": "9.18.0",
"execa": "9.5.2",
"git-remote-origin-url": "4.0.0",
"git-url-parse": "16.0.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"knip": "5.43.2",
"lint-staged": "15.4.2",
"release-it": "18.1.2",
"rimraf": "6.0.1",
"stylelint": "16.13.2",
"stylelint-config-clean-order": "7.0.0",
"stylelint-config-standard": "37.0.0",
"tailwindcss": "4.0.0",
"terser": "5.37.0",
"vite": "6.0.11",
"vite-plugin-minify": "2.1.0"
},
"lint-staged": {
"*": "pnpm lint:eslint"
},
"browserslist": [
"> 0.2%"
]
}