trix-ui 0.2.13 → 0.2.14

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/index.js +0 -0
  2. package/package.json +69 -68
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,68 +1,69 @@
1
- {
2
- "name": "trix-ui",
3
- "version": "0.2.13",
4
- "description": "Lite UI CLI, registry tooling, and templates.",
5
- "license": "MIT",
6
- "type": "module",
7
- "exports": {
8
- ".": {
9
- "types": "./dist/index.d.ts",
10
- "default": "./dist/index.js"
11
- },
12
- "./schema": {
13
- "types": "./dist/schema/index.d.ts",
14
- "default": "./dist/schema/index.js"
15
- },
16
- "./icons": {
17
- "types": "./dist/icons/index.d.ts",
18
- "default": "./dist/icons/index.js"
19
- },
20
- "./utils": {
21
- "types": "./dist/utils/index.d.ts",
22
- "default": "./dist/utils/index.js"
23
- }
24
- },
25
- "bin": {
26
- "ui": "dist/index.js",
27
- "trix-ui": "dist/index.js"
28
- },
29
- "files": [
30
- "dist",
31
- "registry",
32
- "templates",
33
- "tailwind.css",
34
- "README.md"
35
- ],
36
- "scripts": {
37
- "build": "tsc -p tsconfig.json",
38
- "dev": "node --enable-source-maps --import tsx src/index.ts",
39
- "typecheck": "tsc -p tsconfig.json --noEmit",
40
- "pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
41
- "pub:release": "pnpm build && pnpm publish --access public",
42
- "test": "vitest"
43
- },
44
- "dependencies": {
45
- "@antfu/ni": "^28.2.0",
46
- "chalk": "^5.6.2",
47
- "commander": "^14.0.2",
48
- "eslint-plugin-tailwindcss": "3.18.2",
49
- "execa": "^9.6.1",
50
- "jsonc-parser": "^3.2.1",
51
- "kleur": "^4.1.5",
52
- "ora": "^9.1.0",
53
- "pino": "^10.2.1",
54
- "pino-pretty": "^13.1.3",
55
- "postcss": "^8.5.6",
56
- "postcss-selector-parser": "^7.1.1",
57
- "prompts": "^2.4.2",
58
- "ts-morph": "^27.0.2",
59
- "zod": "^4.3.5"
60
- },
61
- "devDependencies": {
62
- "@vitest/coverage-v8": "^4.0.17",
63
- "@types/node": "^25.0.9",
64
- "@types/prompts": "^2.4.9",
65
- "tsx": "^4.21.0",
66
- "typescript": "^5.9.3"
67
- }
68
- }
1
+ {
2
+ "name": "trix-ui",
3
+ "version": "0.2.14",
4
+ "description": "Lite UI CLI, registry tooling, and templates.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "./schema": {
13
+ "types": "./dist/schema/index.d.ts",
14
+ "default": "./dist/schema/index.js"
15
+ },
16
+ "./icons": {
17
+ "types": "./dist/icons/index.d.ts",
18
+ "default": "./dist/icons/index.js"
19
+ },
20
+ "./utils": {
21
+ "types": "./dist/utils/index.d.ts",
22
+ "default": "./dist/utils/index.js"
23
+ }
24
+ },
25
+ "bin": {
26
+ "ui": "dist/index.js",
27
+ "trix-ui": "dist/index.js"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "registry",
32
+ "templates",
33
+ "tailwind.css",
34
+ "README.md"
35
+ ],
36
+ "dependencies": {
37
+ "@antfu/ni": "^28.2.0",
38
+ "chalk": "^5.6.2",
39
+ "commander": "^14.0.2",
40
+ "eslint-plugin-tailwindcss": "3.18.2",
41
+ "execa": "^9.6.1",
42
+ "jsonc-parser": "^3.2.1",
43
+ "kleur": "^4.1.5",
44
+ "ora": "^9.1.0",
45
+ "pino": "^10.2.1",
46
+ "pino-pretty": "^13.1.3",
47
+ "postcss": "^8.5.6",
48
+ "postcss-selector-parser": "^7.1.1",
49
+ "prompts": "^2.4.2",
50
+ "ts-morph": "^27.0.2",
51
+ "zod": "^4.3.5"
52
+ },
53
+ "devDependencies": {
54
+ "@vitest/coverage-v8": "^4.0.17",
55
+ "@types/node": "^25.0.9",
56
+ "@types/prompts": "^2.4.9",
57
+ "tsx": "^4.21.0",
58
+ "typescript": "^5.9.3"
59
+ },
60
+ "scripts": {
61
+ "build": "tsc -p tsconfig.json",
62
+ "dev": "node --enable-source-maps --import tsx src/index.ts",
63
+ "typecheck": "tsc -p tsconfig.json --noEmit",
64
+ "pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
65
+ "pub:release": "pnpm build && pnpm publish --access public",
66
+ "test": "vitest",
67
+ "test:init": "pnpm dev init --cwd ../../../__test__/_react"
68
+ }
69
+ }