-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
136 lines (136 loc) · 5.27 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
132
133
134
135
136
{
"author": "Carlos Lopez Jr. <[email protected]> (https://shortfuse.org/)",
"bin": {
"mdw-css": "./bin/mdw-css.js"
},
"browser": "dist/index.min.js",
"bugs": {
"url": "https://github.com/clshortfuse/materialdesignweb/issues"
},
"description": "Material Design for Web",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@playwright/test": "^1.36.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@stylistic/stylelint-plugin": "^3.0.0",
"@types/clean-css": "^4.2.6",
"@types/html-minifier-terser": "^7.0.0",
"@types/mocha": "^10.0.1",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@web/test-runner": "^0.18.1",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"browserslist-to-esbuild": "^2.1.1",
"clean-css": "^5.3.2",
"element-internals-polyfill": "^1.1.11",
"esbuild": "^0.20.2",
"esbuild-postcss": "^0.0.4",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-sort-class-members": "^1.15.2",
"eslint-plugin-unicorn": "^51.0.1",
"html-minifier-terser": "^7.1.0",
"http-server": "^14.1.1",
"magic-string": "^0.30.0",
"playwright": "^1.32.2",
"postcss-jsx": "^0.36.4",
"rollup-plugin-output-size": "^1.2.1",
"rollup-plugin-serve": "^2.0.2",
"stylelint": "^16.8.1",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-order": "^6.0.2",
"stylelint-use-logical-spec": "^5.0.0",
"typescript": "^5.4.2"
},
"exports": {
"./constants/*": "./constants/*",
"./components/*": "./components/*",
"./core/*": "./core/*",
"./dom/*": "./dom/*",
"./loaders/*": "./loaders/*",
"./mixins/*": "./mixins/*",
"./services/*": "./services/*",
"./utils/*": "./utils/*"
},
"files": [
"/bin",
"/dist",
"/constants",
"/components",
"/core",
"/dom",
"/loaders",
"/mixins",
"/services",
"/types",
"/utils"
],
"homepage": "https://github.com/clshortfuse/materialdesignweb#readme",
"keywords": [
"material",
"design",
"web",
"materialyou",
"md3",
"web-components"
],
"license": "ISC",
"name": "@shortfuse/materialdesignweb",
"overrides": {
"stylelint-no-unsupported-browser-features": {
"doiuse": "^6.0.2"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/clshortfuse/materialdesignweb.git"
},
"scripts": {
"docs": "node build/esbuild.js docs/demo.js --outdir=docs --minify --metafile",
"docs:rollup": "rollup -c build/rollup.config.js docs/demo.js --dir=docs --compact",
"predocs": "node bin/mdw-css.js --custom=yellow,orange:orange,green:0f0,alias:aqua | npx esbuild --minify --loader=css > docs/theme.css",
"predocs-alt": "node bin/mdw-css.js --color=a46750 --custom=yellow,orange:orange,green:0f0,alias:aqua | npx esbuild --minify --loader=css > docs/alt-theme.css",
"prepublishOnly": "node build/esbuild.js index.js --outdir=dist --minify --metafile --production && tsc --emitDeclarationOnly",
"pretest": "eslint --ignore-path .gitignore",
"serve": "node build/esbuild.js docs/demo.js --outdir=docs --metafile --serve --live --tree-shaking=true",
"serve:rollup": "rollup -c build/rollup.config.js docs/demo.js --dir=docs --watch --environment SERVE",
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers chromium firefox webkit --concurrency 1",
"test:custom": "web-test-runner \"test/**/*.test.js\" --node-resolve --concurrency 1",
"test:chromium": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers chromium",
"test:firefox": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers firefox --concurrency 1",
"test:webkit": "web-test-runner \"test/**/*.test.js\" --node-resolve --playwright --browsers webkit",
"test:screenshot": "web-test-runner \"test/screenshot/**/*.test.js\" --node-resolve --playwright --browsers chromium firefox webkit --concurrency 1",
"test:spec": "web-test-runner \"test/spec/**/*.test.js\" --node-resolve --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner \"test/**/*.test.js\" --node-resolve --concurrency 1 --watch",
"test:path": "web-test-runner --node-resolve --playwright --browsers chromium firefox webkit --concurrency 1",
"types": "rm -Rf types && tsc --emitDeclarationOnly",
"watch": "node build/esbuild.js docs/demo.js --outdir=docs --watch --metafile",
"sample": "node build/esbuild.js docs/sample/sample.js --outdir=docs/sample --watch --metafile --serve --live",
"benchmark": "node build/esbuild.js docs/benchmark/main.js --outdir=docs/benchmark --minify --production --metafile --serve --watch"
},
"sideEffects": [
"./components/*.js",
"./loaders/*.js",
"./polyfills/*.js",
"./docs/custom.js",
"./docs/demo/*.js"
],
"type": "module",
"typesVersions": {
"*": {
"*": [
"types/*"
]
}
},
"version": "0.9.0"
}