qstd 0.1.5 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qstd",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "Standard Block component and utilities library with Panda CSS",
5
5
  "author": "malin1",
6
6
  "license": "MIT",
@@ -41,21 +41,6 @@
41
41
  "sideEffects": [
42
42
  "dist/react/index.css"
43
43
  ],
44
- "scripts": {
45
- "build": "panda codegen && panda cssgen && tsup && node scripts/inject-css-import.js",
46
- "dev": "tsup --watch",
47
- "prepublishOnly": "pnpm build",
48
- "test": "vitest run",
49
- "test:watch": "vitest",
50
- "test:all": "pnpx tsx tests/test-all.ts",
51
- "test:block": "node tests/test-block.tsx",
52
- "test:playground": "node tests/playground-e2e.mjs",
53
- "typecheck": "tsc --noEmit",
54
- "typecheck:perf": "tsc --noEmit --extendedDiagnostics",
55
- "typecheck:trace": "tsc --noEmit --generateTrace ./performance/ts-trace",
56
- "analyze:tsserver": "bash performance/analyze-tsserver.sh",
57
- "lint": "eslint src --ext ts,tsx"
58
- },
59
44
  "peerDependencies": {
60
45
  "react": "^18.0.0 || ^19.0.0",
61
46
  "react-dom": "^18.0.0 || ^19.0.0"
@@ -108,5 +93,20 @@
108
93
  "bugs": {
109
94
  "url": "https://github.com/55cancri/qstd/issues"
110
95
  },
111
- "homepage": "https://github.com/55cancri/qstd#readme"
112
- }
96
+ "homepage": "https://github.com/55cancri/qstd#readme",
97
+ "scripts": {
98
+ "build": "panda codegen && panda cssgen && tsup && node scripts/inject-css-import.js",
99
+ "dev": "tsup --watch",
100
+ "prepare:local": "pnpm build && cd playground && pnpm prepare",
101
+ "test": "vitest run",
102
+ "test:watch": "vitest",
103
+ "test:all": "pnpx tsx tests/test-all.ts",
104
+ "test:block": "node tests/test-block.tsx",
105
+ "test:playground": "node tests/playground-e2e.mjs",
106
+ "typecheck": "tsc --noEmit",
107
+ "typecheck:perf": "tsc --noEmit --extendedDiagnostics",
108
+ "typecheck:trace": "tsc --noEmit --generateTrace ./performance/ts-trace",
109
+ "analyze:tsserver": "bash performance/analyze-tsserver.sh",
110
+ "lint": "eslint src --ext ts,tsx"
111
+ }
112
+ }