-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "tinker-lit",
"private": true,
"version": "0.0.337",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"yarn:twx --watch\" \"yarn:start\"",
"twx": "sh ./.generate",
"start": "vite",
"cc": "prettier --check './src/**/*.{css,pcss,js}'",
"format": "prettier --write './src/**/*.{css,pcss,js}'",
"spell": "cspell './src/**/*.{html,js}'",
"build": "yarn twx; yarn format; vite build",
"preview": "vite preview",
"predeploy": "yarn version --patch; yarn build",
"deploy": "cd dist; ln -s ../.vercel; vc --prod",
"open": "open https://tinker-lit.vercel.app"
},
"dependencies": {
"lit": "3.2.1",
"nanostores": "0.11.3"
},
"devDependencies": {
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"cspell": "8.17.3",
"pettier": "1.1.0",
"postcss": "8.5.1",
"prettier": "3.5.0",
"prettier-plugin-tailwindcss": "0.6.11",
"proto-tailwindcss-clrs": "0.0.406",
"tailwindcss": "4.0.5",
"vite": "6.1.0"
}
}