forked from swordev/suid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.91 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.91 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
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
{
"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"
}
],
"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 --experimental-specifier-resolution=node --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": "jest",
"update:deps": "pnpm update -r -i --latest",
"watch": "tsc --build tsconfig.build.json -w"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@wspa/cli": "^0.6.0",
"@wspa/config": "^0.3.1",
"@yarnpkg/core": "^4.0.0-rc.22",
"babel-jest": "^29.1.2",
"babel-preset-solid": "^1.5.7",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-solid": "^0.7.3",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"npm-check-updates": "^16.3.7",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-sort-json": "^0.0.3",
"solid-jest": "^0.2.0",
"solid-js": "^1.5.7",
"solid-testing-library": "^0.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"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": "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>"
}
}
}
}