-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "solid-mode-watcher",
"type": "module",
"version": "0.0.2",
"private": false,
"packageManager": "bun@1.2.4",
"description": "Mode Watcher for Solid.js applications",
"author": "pekochan069",
"contributors": [],
"license": "MIT",
"homepage": "https://github.com/pekochan069/solid-mode-watcher#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pekochan069/solid-mode-watcher.git"
},
"bugs": {
"url": "https://github.com/pekochan069/solid-mode-watcher/issues"
},
"keywords": [
"solid"
],
"sideEffects": false,
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {},
"files": [
"dist"
],
"browser": {},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"prepublishOnly": "bun build",
"lint": "eslint --max-warnings 0 --fix ./src",
"publish:prepare": "bun run build && bun pm pack --destination ./publish"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@tailwindcss/vite": "^4.1.10",
"@types/node": "^24.0.3",
"concurrently": "^9.2.0",
"esbuild": "^0.25.5",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^9.29.0",
"eslint-plugin-solid": "^0.14.5",
"jsdom": "^26.1.0",
"solid-js": "^1.9.7",
"tailwindcss": "^4.1.10",
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-solid": "^2.11.6"
}
}