forked from swordev/suid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.85 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
{
"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": "[email protected]",
"url": "https://github.com/juanrgm"
}
],
"scripts": {
"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",
"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 --ignore-path .gitignore .",
"clean": "wspa clean",
"codemod": "node --no-warnings --loader ts-node/esm packages/codemod/src/bin.ts",
"compose": "wspa compose",
"format": "prettier --cache -w .",
"postinstall": "wspa compose && pnpm scripts prebuild",
"prepare": "husky install",
"preview": "pnpm --filter @suid/site preview",
"release": "changeset publish",
"scripts": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm scripts/index.ts",
"start": "pnpm --filter @suid/site start",
"test": "vitest run",
"test:types": "vitest typecheck --run",
"update:deps": "pnpm update -r -i --latest",
"watch": "tsc --build tsconfig.build.json -w"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@wspa/cli": "^0.6.0",
"@wspa/config": "^0.3.1",
"@yarnpkg/core": "4.0.0-rc.34",
"babel-preset-solid": "^1.6.7",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-solid": "^0.9.1",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"npm-check-updates": "^16.6.2",
"prettier": "^2.8.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-sort-json": "^1.0.0",
"solid-js": "^1.6.7",
"solid-testing-library": "^0.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.26.3"
},
"info": "SUID is all a set of utils and components ported from MUI Core and much more.",
"pnpm": {
"overrides": {
"@trivago/prettier-plugin-sort-imports>@babel/parser": "7.17.9"
}
},
"x-wspa": {
"extends": "@wspa/config/auto",
"pkgManifest": {
"bugs": {
"url": "https://github.com/swordev/suid/issues"
},
"contributors": [
{
"name": "Juanra GM",
"email": "[email protected]",
"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>"
}
}
}
}