-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.06 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
{
"name": "@jaoafa/jao-ui",
"version": "0.4.1",
"description": "jao UI Components with Vue.js.",
"keywords": [
"jaoafa",
"vue"
],
"homepage": "https://github.com/jaoafa/jao-ui",
"bugs": "https://github.com/jaoafa/jao-ui/issues",
"license": "MIT",
"contributors": [
{
"name": "Hiratake",
"url": "https://hiratake.xyz"
}
],
"files": [
"dist"
],
"main": "./dist/jao-ui.umd.js",
"module": "./dist/jao-ui.es.js",
"unpkg": "./dist/jao-ui.umd.js",
"types": "./dist/types/build.d.ts",
"exports": {
".": {
"import": "./dist/jao-ui.es.js",
"require": "./dist/jao-ui.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "https://github.com/jaoafa/jao-ui.git"
},
"dependencies": {
"nanoid": "3.2.0",
"vue": "^3.2.25"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/vue3": "6.5.16",
"@types/jest": "27.5.2",
"@types/node": "17.0.14",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"@vitejs/plugin-vue": "2.3.4",
"babel-loader": "8.3.0",
"can-npm-publish": "1.3.6",
"css-loader": "6.8.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-vue": "8.7.1",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"postcss-html": "1.5.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"sass": "1.58.3",
"sass-loader": "12.6.0",
"style-loader": "3.3.3",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-recommended-vue": "1.4.0",
"stylelint-config-standard-scss": "3.0.0",
"ts-jest": "27.1.5",
"typescript": "4.7.4",
"vite": "2.9.16",
"vitepress": "0.22.4",
"vue-loader": "16.8.3",
"vue-tsc": "0.31.2"
},
"engines": {
"node": "16.x"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist",
"postbuild": "rimraf dist/types/dev",
"build": "vue-tsc && vite build",
"build:docs": "vitepress build docs",
"build:storybook": "build-storybook",
"dev": "vite",
"dev:docs": "vitepress dev docs",
"dev:storybook": "start-storybook -p 6006",
"lint": "npm run lint:script & npm run lint:style",
"lint:script": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"lint:style": "stylelint \"**/*.{css,scss,vue}\"",
"format": "prettier \"**/*.{js,jsx,ts,tsx,vue,css,scss,json}\" --write",
"test": "jest --config=\".jestrc.js\""
}
}