-
-
Notifications
You must be signed in to change notification settings - Fork 286
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "svelte-material-ui-dev",
"version": "dev",
"description": "Svelte Material UI Components",
"keywords": [
"svelte",
"svelte3",
"material-ui",
"material-design",
"material",
"svelte-components",
"sveltejs"
],
"scripts": {
"check": "lerna run check",
"clean": "lerna run clean",
"build": "lerna run build",
"lint": "prettier --check --plugin-search-dir=. .",
"format": "prettier --write --plugin-search-dir=. .",
"postinstall": "lerna run --ignore \"@smui-extra/site\" build",
"pages": "npm run build && npm run pages:build && npm run pages:push",
"pages:build": "cd packages/site && npm run build && cd ../..",
"pages:push": "git add -f packages/site/build && git commit -m 'chore: update built files' && git push origin $(git subtree split --prefix packages/site/build master):refs/heads/gh-pages --force && git reset --hard HEAD^",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*": "prettier --check --plugin-search-dir=."
},
"repository": {
"type": "git",
"url": "git+https://github.com/hperrin/svelte-material-ui.git"
},
"author": "Hunter Perrin <[email protected]>",
"bugs": {
"url": "https://github.com/hperrin/svelte-material-ui/issues"
},
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"sass": "^1.81.0",
"svelte": "^5.2.4"
}
}