-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·63 lines (63 loc) · 2.13 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
{
"name": "@64robots/r64components",
"author": "64Robots",
"license": "MIT",
"version": "0.1.31",
"description": "Set of customizable components made with Tailwindcss",
"main": "dist/r64components.ssr.js",
"browser": "dist/r64components.esm.js",
"module": "dist/r64components.esm.js",
"unpkg": "dist/r64components.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint ./",
"serve": "vue-cli-service serve src/dev.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/64robots/r64components"
},
"bugs": {
"url": "https://github.com/64robots/r64components/issues"
},
"homepage": "https://github.com/64robots/r64components#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.3.1",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-replace": "^2.3.2",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/vue": "^5.3.18",
"@vue/cli-service": "^4.3.1",
"babel-loader": "^8.1.0",
"babel-preset-vue": "^2.0.2",
"cross-env": "^7.0.2",
"eslint": "^5.13.0",
"minimist": "^1.2.5",
"rollup": "^2.7.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-vue": "4.7.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.4",
"vuelidate": "^0.7.5"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"engines": {
"node": ">=8"
},
"dependencies": {}
}