-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.93 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.93 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
103
{
"name": "slowmo",
"version": "0.16.2",
"description": "Universal slow-motion control for web animations - CSS, videos, GSAP, Three.js, and more",
"type": "module",
"main": "./dist/slowmo.cjs",
"module": "./dist/slowmo.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/slowmo.js",
"require": "./dist/slowmo.cjs",
"types": "./dist/index.d.ts"
},
"./dial": {
"import": "./dist/dial.js",
"require": "./dist/dial.cjs",
"types": "./dist/dial-api.d.ts"
},
"./react": {
"import": "./dist/react.js",
"require": "./dist/react.cjs",
"types": "./dist/react.d.ts"
},
"./recreate": {
"import": "./dist/recreate.js",
"require": "./dist/recreate.cjs",
"types": "./dist/recreate.d.ts"
}
},
"bin": {
"slowmo": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"slowmo": "bun src/cli/index.ts",
"dev": "vite demo",
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"build:ext": "vite build --config vite.extension.config.ts",
"zip:extension": "cd extension && zip -r ../slowmo-extension.zip . -x '*.DS_Store' -x 'store-assets/*'",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:watch": "vitest",
"test:e2e": "playwright test --config tests/e2e/playwright.config.ts",
"test:e2e:ui": "playwright test --config tests/e2e/playwright.config.ts --ui",
"test:e2e:extension": "playwright test --config tests/e2e/extension/extension.config.ts",
"test:all": "npm run test:unit && npm run test:e2e",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"animation",
"slow-motion",
"slowmo",
"debug",
"css-animation",
"gsap",
"three.js",
"video",
"framer-motion"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seflless/slowmo.git"
},
"homepage": "https://github.com/seflless/slowmo#readme",
"bugs": {
"url": "https://github.com/seflless/slowmo/issues"
},
"devDependencies": {
"@playwright/test": "^1.42.0",
"@types/node": "^20.11.0",
"@types/react": "^19.2.10",
"@vitest/coverage-v8": "^1.2.1",
"jsdom": "^24.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"peerDependencies": {
"gsap": ">=3.0.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"gsap": {
"optional": true
},
"react": {
"optional": true
}
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}