-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 916 Bytes
/
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
{
"name": "riot-beercss",
"version": "1.0.0",
"description": "Material Design Components made with RiotJS and BeerCSS",
"main": "index.js",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "riot -o dist/index.js -f esm ./components/index.js && riot -o dist/index.cjs.js -f cjs ./components/index.js"
},
"author": "steevepay",
"license": "ISC",
"devDependencies": {
"@riot-tools/meiosis": "=4.0.0",
"@riotjs/route": "=9.2.0",
"@riotjs/ssr": "=9.0.0",
"jsdom": "=24.0.0",
"mitt": "=3.0.1",
"riot": "=9.1.6",
"rollup-plugin-riot": "=9.0.2",
"vite": "=5.2.10",
"vitest": "=1.4.0",
"beercss": "=3.5.4",
"material-dynamic-colors": "=1.1.0"
},
"type": "module",
"files": [
"dist",
"index.js",
"index.cjs.js"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.js"
}
}
}