-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@trickle/mud.js",
"version": "1.3.2",
"description": "Mini UI-Build Dependence",
"main": "lib/cjs/index.cjs.js",
"module": "lib/esm/index.esm.js",
"browser": "lib/umd/index.umd.js",
"type": "module",
"directories": {
"lib": "src"
},
"scripts": {
"prepare": "husky install",
"build": "rollup -c",
"build:dev": "rollup -c -w",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoderSerio/mud.js.git"
},
"keywords": [
"ui-build",
"js",
"no-runtime-dependencies"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoderSerio/mud/issues"
},
"homepage": "https://coderserio.github.io/Mud.js",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@vuepress/client": "2.0.0-beta.61",
"@vuepress/core": "^1.9.9",
"@vuepress/plugin-docsearch": "2.0.0-beta.61",
"@vuepress/utils": "2.0.0-alpha.1",
"anywhere": "^1.6.0",
"eslint": "^8.38.0",
"eslint-config-vuepress": "^4.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.5",
"rollup": "^2.45.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"vue": "^3.2.47",
"vuepress": "2.0.0-beta.61"
},
"hooks": {
"pre-commit": "npm test && npm run foo"
},
"files": [
"lib",
"README.md"
]
}