@coder/pixel-storybook 0.1.0 → 0.1.3

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/dist/bin.js +0 -0
  2. package/package.json +23 -15
package/dist/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coder/pixel-storybook",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Visual regression testing tool for Storybook",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,10 +18,29 @@
18
18
  "dist/**/*.js",
19
19
  "dist/**/*.d.ts"
20
20
  ],
21
+ "scripts": {
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "build": "rm -rf dist/ && tsc",
25
+ "lint": "biome check .",
26
+ "lint-fix": "biome check --fix .",
27
+ "release": "np --no-publish",
28
+ "dev": "node --loader ts-node/esm src/bin.ts",
29
+ "start": "NODE_ENV=production node dist/bin.js",
30
+ "knip": "knip",
31
+ "prepack": "pnpm build"
32
+ },
21
33
  "engines": {
22
34
  "node": ">=22"
23
35
  },
24
- "repository": "https://github.com/coder/pixel-storybook",
36
+ "publishConfig": {
37
+ "access": "public",
38
+ "provenance": false
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/coder/pixel-storybook.git"
43
+ },
25
44
  "keywords": [],
26
45
  "authors": [
27
46
  "Jeremy Ruppel <jeremy@coder.com>",
@@ -49,16 +68,5 @@
49
68
  "peerDependencies": {
50
69
  "playwright-core": ">=1.47.2"
51
70
  },
52
- "scripts": {
53
- "test": "vitest run",
54
- "test:watch": "vitest",
55
- "build": "rm -rf dist/ && tsc",
56
- "lint": "biome check .",
57
- "lint-fix": "biome check --fix .",
58
- "release": "np --no-publish",
59
- "version": "./update-versions.sh",
60
- "dev": "node --loader ts-node/esm src/bin.ts",
61
- "start": "NODE_ENV=production node dist/bin.js",
62
- "knip": "knip"
63
- }
64
- }
71
+ "packageManager": "pnpm@11.2.1+sha512.4c4c142b276348da01d39907cce2f40bf61281212a0e43295ee988055d50cce728ab7e9c181e252e4bce3a4f19ba1cff1a75b1e2e0fd6b17ba0be598a5e45446"
72
+ }