@patternmode/status 0.3.0 → 0.3.1
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.
- package/package.json +28 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternmode/status",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Animated discrete status marks for Patternmode interfaces.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,41 +41,27 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"build": "tsdown && tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false && pnpm build:styles",
|
|
46
|
-
"build:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
47
|
-
"clean": "rm -rf dist .turbo",
|
|
48
|
-
"dev": "concurrently \"pnpm dev:js\" \"pnpm dev:types\" \"pnpm dev:styles\"",
|
|
49
|
-
"dev:js": "tsdown --watch",
|
|
50
|
-
"dev:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
51
|
-
"dev:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false --watch --preserveWatchOutput",
|
|
52
|
-
"lint": "howells-check .",
|
|
53
|
-
"lint:fix": "howells-fix .",
|
|
54
|
-
"prepack": "pnpm build",
|
|
55
|
-
"test": "vitest run",
|
|
56
|
-
"typecheck": "tsc --noEmit"
|
|
57
|
-
},
|
|
58
44
|
"dependencies": {
|
|
59
|
-
"
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
45
|
+
"motion": "^12.40.0",
|
|
46
|
+
"@howells/motion": "0.2.0",
|
|
47
|
+
"@patternmode/system": "0.5.0"
|
|
62
48
|
},
|
|
63
49
|
"devDependencies": {
|
|
64
|
-
"@howells/lint": "
|
|
65
|
-
"@howells/typescript-config": "
|
|
50
|
+
"@howells/lint": "^0.5.0",
|
|
51
|
+
"@howells/typescript-config": "^0.1.6",
|
|
66
52
|
"@tailwindcss/cli": "^4.3.0",
|
|
67
53
|
"@testing-library/jest-dom": "^6.9.1",
|
|
68
54
|
"@testing-library/react": "^16.3.2",
|
|
69
|
-
"@types/react": "
|
|
70
|
-
"@types/react-dom": "
|
|
55
|
+
"@types/react": "^19.2.17",
|
|
56
|
+
"@types/react-dom": "^19.2.3",
|
|
71
57
|
"concurrently": "^9.2.1",
|
|
72
|
-
"jsdom": "
|
|
73
|
-
"react": "
|
|
74
|
-
"react-dom": "
|
|
75
|
-
"tailwindcss": "
|
|
58
|
+
"jsdom": "^29.1.1",
|
|
59
|
+
"react": "^19.2.7",
|
|
60
|
+
"react-dom": "^19.2.7",
|
|
61
|
+
"tailwindcss": "^4.3.0",
|
|
76
62
|
"tsdown": "^0.22.0",
|
|
77
|
-
"typescript": "
|
|
78
|
-
"vitest": "
|
|
63
|
+
"typescript": "^6.0.3",
|
|
64
|
+
"vitest": "^4.1.8"
|
|
79
65
|
},
|
|
80
66
|
"peerDependencies": {
|
|
81
67
|
"react": "^19.0.0",
|
|
@@ -83,5 +69,18 @@
|
|
|
83
69
|
},
|
|
84
70
|
"engines": {
|
|
85
71
|
"node": ">=20"
|
|
72
|
+
},
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "tsdown && tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false && pnpm build:styles",
|
|
75
|
+
"build:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
76
|
+
"clean": "rm -rf dist .turbo",
|
|
77
|
+
"dev": "concurrently \"pnpm dev:js\" \"pnpm dev:types\" \"pnpm dev:styles\"",
|
|
78
|
+
"dev:js": "tsdown --watch",
|
|
79
|
+
"dev:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
80
|
+
"dev:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false --watch --preserveWatchOutput",
|
|
81
|
+
"lint": "howells-check .",
|
|
82
|
+
"lint:fix": "howells-fix .",
|
|
83
|
+
"test": "vitest run",
|
|
84
|
+
"typecheck": "tsc --noEmit"
|
|
86
85
|
}
|
|
87
|
-
}
|
|
86
|
+
}
|