-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 944 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
{
"name": "mithril-materialized",
"version": "0.1.0",
"private": true,
"description": "A materialize library for mithril.",
"scripts": {
"clean:local": "rimraf -rf ./docs",
"build": "cd packages/lib && pnpm run build",
"build:example": "cd packages/example && pnpm run build",
"build:domain": "pnpm run -r --parallel clean:docs && pnpm run -r --parallel build:domain",
"start": "pnpm -r --parallel run dev",
"clean": "npm run clean:local && pnpm clean",
"dry-run": "pnpm dry-run",
"patch-release": "npm run clean && npm run build && pnpm patch-release",
"minor-release": "npm run clean && npm run build && pnpm minor-release"
},
"keywords": [
"mithril",
"materialize-css",
"material design",
"ui toolkit"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"devDependencies": {
"pnpm": "10.0.0",
"rimraf": "^6.0.1"
}
}