slowmo 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +15 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slowmo",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Universal slow-motion control for web animations - CSS, videos, GSAP, Three.js, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/slowmo.cjs",
@@ -14,7 +14,8 @@
14
14
  }
15
15
  },
16
16
  "files": [
17
- "dist"
17
+ "dist",
18
+ "README.md"
18
19
  ],
19
20
  "scripts": {
20
21
  "dev": "vite demo",
@@ -23,7 +24,10 @@
23
24
  "test": "vitest run",
24
25
  "test:watch": "vitest",
25
26
  "typecheck": "tsc --noEmit",
26
- "prepublishOnly": "npm run build"
27
+ "prepublishOnly": "npm run build",
28
+ "release:patch": "npm version patch && npm publish",
29
+ "release:minor": "npm version minor && npm publish",
30
+ "release:major": "npm version major && npm publish"
27
31
  },
28
32
  "keywords": [
29
33
  "animation",
@@ -38,6 +42,14 @@
38
42
  ],
39
43
  "author": "",
40
44
  "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/seflless/slowmo.git"
48
+ },
49
+ "homepage": "https://github.com/seflless/slowmo#readme",
50
+ "bugs": {
51
+ "url": "https://github.com/seflless/slowmo/issues"
52
+ },
41
53
  "devDependencies": {
42
54
  "@types/node": "^20.11.0",
43
55
  "typescript": "^5.3.3",