-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.12 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "miwi",
"description": "A UI library with a really simple styling API so you basically never have to touch CSS again.",
"version": "0.2.87",
"license": "MIT",
"author": "Monode",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/monode-dev/Miwi.git"
},
"files": [
"dist"
],
"private": false,
"sideEffects": true,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "npm run build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li",
"pub": "sucrase-node pub.ts"
},
"peerDependencies": {
"@mdi/js": "^7.2.96",
"gsap": "^3.12.2",
"solid-js": "^1.7.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"concurrently": "^8.2.0",
"esbuild": "^0.18.15",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.45.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"semver": "^7.5.4",
"solid-js": "^1.8.0",
"sucrase": "^3.34.0",
"tsup": "^7.1.0",
"tsup-preset-solid": "^2.0.1",
"typescript": "^5.2.2",
"vite": "^4.4.6",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.33.0"
},
"keywords": [
"solid"
],
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
},
"dependencies": {
"mosa-js": "^0.0.23"
}
}