-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.21 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
{
"author": "@malopestorres",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r --if-present run build",
"format": "prettier . --write --parser typescript \"**/*.[tj]s?(x)\"",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "pnpm -r --if-present run lint -- --fix",
"test": "pnpm -r --if-present run test",
"start": "pnpm --filter=./packages/slider start",
"commit": "czg",
"clean:dupes": "find packages/ -type f | grep -E ' [0-9]+\\.[a-zA-Z0-9]+$' | xargs -I {} rm -f \"{}\" || true",
"changelog": "standard-changelog",
"prepare": "husky",
"changeset": "changeset",
"version:changeset": "changeset version",
"publish:changeset": "pnpm -r publish --access public --no-git-checks",
"release:manual": "pnpm version:changeset && pnpm build && pnpm publish:changeset",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"site:badges": "node website/scripts/build-size-badge.mjs",
"docs:build": "node website/scripts/build-docs.mjs",
"site:prepare": "pnpm docs:build && pnpm site:badges && node website/scripts/prepare-pages.mjs",
"docs:watch": "sh -c 'node website/scripts/build-docs.mjs --watch & WATCH_PID=$!; pnpm exec vite website --host 0.0.0.0 --port 3000 & VITE_PID=$!; trap \"kill $WATCH_PID $VITE_PID\" INT TERM EXIT; wait'"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"all-contributors-cli": "^6.17.0",
"czg": "^1.13.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.3",
"prettier": "^3.3.3",
"standard-changelog": "^6.0.0",
"typescript": "^5.5.4",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"tailwindcss": "^4.3.0",
"vite-plugin-minify": "^1.5.2"
}
}