-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
131 lines (131 loc) · 3.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "suid",
"version": "1.0.0",
"private": true,
"description": "A port of Materia-UI (MUI) built with SolidJS.",
"keywords": [
"best_ecosystem",
"components",
"material",
"material-design",
"material-ui",
"mui",
"solid",
"solid-js",
"solid.js",
"solidhack",
"solidjs",
"styled-component",
"ui",
"ux"
],
"homepage": "https://suid.io",
"bugs": {
"url": "https://github.com/swordev/suid.git/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/swordev/suid.git"
},
"license": "MIT",
"contributors": [
{
"name": "Juanra GM",
"email": "juanrgm724@gmail.com",
"url": "https://github.com/juanrgm"
}
],
"workspaces": [
"scripts",
"packages/*"
],
"scripts": {
"bench": "vitest bench --run",
"build": "pnpm scripts prebuild && pnpm build:ts && pnpm build:vite-plugin && pnpm build:site",
"build:site": "pnpm --filter @suid/site build && wspa compose -p @suid/site",
"build:ts": "tsc --build tsconfig.build.json --verbose",
"build:vite-plugin": "pnpm --filter @suid/vite-plugin build && wspa compose -p @suid/vite-plugin",
"changeset": "changeset",
"check": "pnpm check:format && pnpm check:lint",
"check:format": "prettier --cache -c .",
"check:lint": "eslint --cache .",
"clean": "wspa clean",
"codemod": "tsx packages/codemod/src/bin.ts",
"compose": "wspa compose",
"dev": "pnpm --filter @suid/site dev",
"format": "prettier --cache -w .",
"postinstall": "wspa compose && pnpm scripts prebuild",
"prepare": "husky",
"release": "changeset publish",
"scripts": "tsx scripts/index.ts",
"start": "pnpm --filter @suid/site start",
"test": "vitest run",
"test:types": "vitest typecheck --run",
"update:deps": "ncu",
"update:prettier-deps": "ncu prettier,@types/prettier,@trivago/prettier-plugin-sort-imports,prettier-plugin-packagejson,prettier-plugin-sort-json",
"update:solid-core-deps": "ncu babel-preset-solid,solid-js,solid-testing-library",
"update:solid-misc-deps": "ncu @solidjs/meta,@solidjs/router",
"update:vite-deps": "ncu vite,vitest",
"watch": "tsc --build tsconfig.build.json -w"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@eslint/compat": "^1.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.16.5",
"@wspa/cli": "^0.6.0",
"@wspa/config": "^0.3.1",
"@yarnpkg/core": "4.1.3",
"babel-preset-solid": "^1.8.22",
"eslint": "^9.10.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-solid": "^0.14.3",
"globals": "15.9.0",
"husky": "^9.1.6",
"jsdom": "^22.0.0",
"npm-check-updates": "^17.1.1",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-sort-json": "^4.0.0",
"solid-js": "^1.8.22",
"solid-testing-library": "^0.5.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.6",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.1"
},
"info": "SUID is all a set of utils and components ported from MUI Core and much more.",
"x-wspa": {
"extends": "@wspa/config/auto",
"pkgManifest": {
"bugs": {
"url": "https://github.com/swordev/suid/issues"
},
"contributors": [
{
"name": "Juanra GM",
"email": "juanrgm724@gmail.com",
"url": "https://github.com/juanrgm"
}
],
"files": [
"**/*.js",
"**/*.jsx",
"**/*.d.ts"
],
"homepage": "https://suid.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swordev/suid",
"directory": "<directory>"
}
}
}
}