@qds.dev/motion 0.9.7 → 0.10.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +22 -22
package/README.md CHANGED
@@ -19,7 +19,7 @@ Inspired by Framer Motion, `@qds.dev/motion` brings powerful, declarative animat
19
19
 
20
20
  ## Installation
21
21
 
22
- *Coming soon...*
22
+ _Coming soon..._
23
23
 
24
24
  ## Usage Example (Target API)
25
25
 
package/package.json CHANGED
@@ -1,43 +1,43 @@
1
1
  {
2
2
  "name": "@qds.dev/motion",
3
- "version": "0.9.7",
3
+ "version": "0.10.0",
4
+ "private": false,
4
5
  "description": "Create a Qwik library",
5
- "main": "./lib/index.qwik.mjs",
6
- "qwik": "./lib/index.qwik.mjs",
7
- "types": "./lib-types/src/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "import": "./lib/index.qwik.mjs",
11
- "types": "./lib-types/src/index.d.ts"
12
- }
13
- },
14
6
  "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/kunai-consulting/qwik-design-system"
10
+ },
15
11
  "files": [
16
12
  "lib",
17
13
  "lib-types"
18
14
  ],
19
- "engines": {
20
- "node": ">=24.9.0"
21
- },
22
- "private": false,
23
15
  "type": "module",
16
+ "sideEffects": false,
17
+ "main": "./lib/index.qwik.mjs",
18
+ "types": "./lib-types/src/index.d.ts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./lib-types/src/index.d.ts",
22
+ "import": "./lib/index.qwik.mjs"
23
+ }
24
+ },
24
25
  "scripts": {
25
26
  "build": "pnpm run build.lib & pnpm run build.types",
26
27
  "build.lib": "rolldown -c rolldown.config.ts",
27
28
  "build.types": "tsc --emitDeclarationOnly --outDir ./lib-types"
28
29
  },
29
30
  "devDependencies": {
31
+ "@qwik.dev/core": "2.0.0-beta.23",
30
32
  "@types/node": "24.9.0",
31
- "typescript": "5.4.5",
32
- "rolldown": "1.0.0-beta.45",
33
- "@qwik.dev/core": "2.0.0-beta.23"
33
+ "rolldown": "1.0.0-rc.4",
34
+ "typescript": "5.4.5"
34
35
  },
35
36
  "peerDependencies": {
36
37
  "@qwik.dev/core": ">=2.0.0-beta.23"
37
38
  },
38
- "sideEffects": false,
39
- "repository": {
40
- "type": "git",
41
- "url": "https://github.com/kunai-consulting/qwik-design-system"
42
- }
39
+ "engines": {
40
+ "node": ">=24.9.0"
41
+ },
42
+ "qwik": "./lib/index.qwik.mjs"
43
43
  }