-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.36 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
{
"name": "stratum-motion",
"version": "0.1.0",
"description": "SSR-safe, zero-dependency motion primitives for React: reveal, parallax, scroll scenes and page transitions with prefers-reduced-motion honoured and no layout shift by construction.",
"keywords": [
"react",
"animation",
"motion",
"scroll",
"parallax",
"reveal",
"ssr",
"next",
"accessibility",
"prefers-reduced-motion",
"web-animations-api"
],
"license": "MIT",
"author": "OpusDevs <opusdevs@proton.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/GeoCodeCrafter/stratum-motion.git"
},
"bugs": {
"url": "https://github.com/GeoCodeCrafter/stratum-motion/issues"
},
"homepage": "https://github.com/GeoCodeCrafter/stratum-motion#readme",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.18"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"lint": "tsc --noEmit",
"demo:build": "tsup --config tsup.demo.config.ts && node examples/demo/dist/prerender.js",
"demo": "npm run demo:build && node examples/demo/serve.mjs",
"demo:gif": "node scripts/record-gif.mjs"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-v8": "^2.1.8",
"gifenc": "^1.0.3",
"jsdom": "^25.0.1",
"pngjs": "^7.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
}
}