-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-spring--root",
"private": true,
"description": "Cross-platform animation engine for React",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-spring.git"
},
"homepage": "https://github.com/pmndrs/react-spring#readme",
"keywords": [
"animated",
"animation",
"hooks",
"motion",
"react",
"spring",
"typescript",
"velocity"
],
"license": "MIT",
"author": "Paul Henschel",
"maintainers": [
"Josh Ellis (https://github.com/joshuaellis)"
],
"scripts": {
"build-ci": "turbo run build --filter=!@react-spring/docs",
"build": "turbo run build",
"changeset": "changeset",
"check:types": "tsc --noEmit",
"clean": "turbo run clean",
"dev": "turbo run dev --no-cache --parallel --continue",
"docs:dev": "pnpm --filter @react-spring/docs dev",
"docs:build": "pnpm --filter @react-spring/docs build",
"demo:dev": "pnpm --filter @react-spring/demo dev",
"format": "oxfmt \"**/*.{ts,tsx,md}\"",
"format:check": "oxfmt --check \"**/*.{ts,tsx,md}\"",
"lint": "oxlint packages/*/src targets/*/src docs/app docs/scripts demo/src",
"package": "turbo run pack",
"prepare": "husky",
"test": "pnpm test:unit && pnpm test:types && pnpm test:e2e",
"test:unit": "vitest run --project unit",
"test:cov": "vitest run --project unit --coverage",
"test:types": "vitest run --project types",
"test:e2e": "vitest run --project e2e",
"release": "pnpm clean && pnpm install && pnpm build && pnpm changeset publish --no-git-tag",
"vers": "pnpm changeset version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@react-spring/mock-raf": "1.1.1",
"@react-spring/parallax": "workspace:*",
"@react-three/fiber": "~9.6.1",
"@swc/core": "1.15.47",
"@types/fs-extra": "11.0.4",
"@types/lodash.clamp": "4.0.9",
"@types/lodash.shuffle": "4.2.9",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/three": "0.184.1",
"@vitest/browser-playwright": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"flush-microtasks": "1.0.1",
"husky": "9.1.7",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"playwright": "^1.60.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"spec.ts": "1.1.3",
"three": "0.184.0",
"tsdown": "0.22.14",
"turbo": "2.10.9",
"typescript": "6.0.3",
"vite": "8.0.14",
"vitest": "^4.1.7",
"vitest-browser-react": "^2.2.0"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/pmndrs"
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24.16.0"
}
}