-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 KB
/
package.json
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
{
"name": "@spuxx/solid",
"version": "0.0.0",
"description": "A package containing various utilities for my Solid applications.",
"license": "MIT",
"author": {
"name": "spuxx",
"email": "hi@spuxx.dev",
"url": "https://spuxx.dev"
},
"keywords": [
"spuxx"
],
"repository": {
"type": "git",
"url": "https://github.com/spuxx1701/jslibs"
},
"homepage": "https://github.com/spuxx1701/jslibs/blob/main/packages/solid/README.md",
"bugs": {
"url": "https://github.com/spuxx1701/jslibs/issues"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"./styles": {
"import": "./dist/main.css"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"dev": "concurrently \"cd ../browser-utils && npm run dev\" \"vite build --watch\"",
"build": "vite build",
"types": "tsc --noEmit"
},
"devDependencies": {
"@iconify-icon/solid": "2.3.0",
"@spuxx/browser-utils": "workspace:@spuxx/browser-utils@*",
"@vitest/browser": "3.0.4",
"csstype": "3.1.3",
"playwright": "1.50.1",
"solid-js": "1.9.3",
"typescript": "5.7.2",
"vite": "6.0.11",
"vite-plugin-dts": "4.5.0",
"vite-plugin-solid": "2.11.0",
"vite-tsconfig-paths": "5.1.2",
"vitest": "2.0.5"
},
"peerDependencies": {
"@iconify-icon/solid": "^2.3.0",
"@spuxx/browser-utils": "workspace:@spuxx/browser-utils@*",
"@spuxx/js-utils": "^1.3.0",
"solid-js": "^1.9.0"
},
"dependencies": {
"@corvu/dialog": "^0.2.4"
}
}