moondust 0.0.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 ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "name": "moondust",
3
+ "version": "0.0.0",
4
+ "description": "Nebula is a component library designed with many themes in mind and customizable props.",
5
+ "license": "MIT",
6
+ "author": "Zackary Santana",
7
+ "contributors": [],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/zackarysantana/nebula.git"
11
+ },
12
+ "homepage": "https://github.com/zackarysantana/nebula#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/zackarysantana/nebula/issues"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "private": false,
20
+ "sideEffects": false,
21
+ "type": "module",
22
+ "main": "./dist/index.js",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "browser": {},
26
+ "exports": {
27
+ "solid": {
28
+ "development": "./dist/dev.jsx",
29
+ "import": "./dist/index.jsx"
30
+ },
31
+ "development": {
32
+ "import": {
33
+ "types": "./dist/index.d.ts",
34
+ "default": "./dist/dev.js"
35
+ }
36
+ },
37
+ "import": {
38
+ "types": "./dist/index.d.ts",
39
+ "default": "./dist/index.js"
40
+ }
41
+ },
42
+ "typesVersions": {},
43
+ "scripts": {
44
+ "dev": "vite serve dev",
45
+ "build": "tsup",
46
+ "test": "concurrently pnpm:test:*",
47
+ "test:client": "vitest",
48
+ "test:ssr": "pnpm run test:client --mode ssr",
49
+ "prepublishOnly": "pnpm build",
50
+ "format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
51
+ "lint": "concurrently pnpm:lint:*",
52
+ "lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
53
+ "lint:types": "tsc --noEmit",
54
+ "update-deps": "pnpm up -Li"
55
+ },
56
+ "peerDependencies": {
57
+ "solid-js": "^1.6.0"
58
+ },
59
+ "devDependencies": {
60
+ "@types/node": "^20.12.12",
61
+ "@typescript-eslint/eslint-plugin": "^7.9.0",
62
+ "@typescript-eslint/parser": "^7.9.0",
63
+ "class-variance-authority": "^0.7.0",
64
+ "clsx": "^2.1.1",
65
+ "concurrently": "^8.2.2",
66
+ "esbuild": "^0.23.0",
67
+ "esbuild-plugin-solid": "^0.6.0",
68
+ "eslint": "^8.56.0",
69
+ "eslint-plugin-eslint-comments": "^3.2.0",
70
+ "eslint-plugin-no-only-tests": "^3.1.0",
71
+ "jsdom": "^24.0.0",
72
+ "prettier": "^3.3.3",
73
+ "prettier-plugin-tailwindcss": "^0.6.5",
74
+ "solid-js": "^1.8.17",
75
+ "tailwind-merge": "^2.4.0",
76
+ "tsup": "^8.0.2",
77
+ "tsup-preset-solid": "^2.2.0",
78
+ "typescript": "^5.4.5",
79
+ "vite": "^5.2.11",
80
+ "vite-plugin-solid": "^2.10.2",
81
+ "vitest": "^2.0.2"
82
+ },
83
+ "keywords": [
84
+ "solid"
85
+ ],
86
+ "packageManager": "pnpm@9.1.1",
87
+ "engines": {
88
+ "node": ">=18",
89
+ "pnpm": ">=9.0.0"
90
+ }
91
+ }