-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "kinetic-input",
"version": "0.0.4",
"private": true,
"description": "Momentum-driven number picker components for React",
"type": "module",
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"build": "pnpm --filter @tensil/kinetic-input build",
"build:demo": "pnpm --filter kinetic-demo build",
"build:all": "pnpm -r run build",
"dev": "pnpm run dev:demo",
"dev:demo": "pnpm --filter kinetic-demo dev",
"typecheck": "pnpm -r --if-present run typecheck",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"lint:dead-code": "knip",
"lint:dead-code:production": "knip --production",
"test": "pnpm --filter @tensil/kinetic-input test",
"test:ui": "pnpm --filter @tensil/kinetic-input test:ui",
"test:coverage": "pnpm --filter @tensil/kinetic-input test:coverage",
"validate": "pnpm run typecheck && pnpm run lint && pnpm run lint:dead-code && pnpm test",
"ci": "pnpm run validate",
"prepare": "node -e \"try { require('husky'); process.exit(0); } catch (e) { if (e.code === 'MODULE_NOT_FOUND') process.exit(1); throw e; }\" && husky || true"
},
"keywords": [
"react",
"number-picker",
"scrubber",
"kinetic",
"input"
],
"repository": {
"type": "git",
"url": "https://github.com/NullSense/Kinetic-Input.git"
},
"homepage": "https://github.com/NullSense/Kinetic-Input#readme",
"bugs": {
"url": "https://github.com/NullSense/Kinetic-Input/issues"
},
"author": "NullSense",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.12",
"@vitest/ui": "^4.0.12",
"autoprefixer": "^10.4.22",
"happy-dom": "^20.0.10",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"knip": "^5.70.1",
"lint-staged": "^16.2.7",
"oxfmt": "^0.14.0",
"oxlint": "^1.29.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.0.12",
"workbox-window": "^7.4.0"
},
"dependencies": {},
"overrides": {
"@xstate/react": "^6.0.0",
"framer-motion": "^12.23.24",
"lucide-react": "^0.554.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-syntax-highlighter": "^16.1.0",
"xstate": "^5.24.0"
},
"packageManager": "pnpm@10.13.1"
}