-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.75 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
{
"name": "@astel/ui",
"version": "0.0.1",
"private": false,
"description": "Sleek and minimal vue 3 UI component library",
"keywords": [
"astel",
"vue",
"vue3",
"vuejs",
"typescript",
"vue-components",
"ui",
"framework"
],
"homepage": "https://github.com/astel-org/astel",
"bugs": "https://github.com/astel-org/astel/issues",
"license": "MIT",
"author": {
"name": "Sumit Kolhe",
"email": "[email protected]"
},
"files": [
"dist/"
],
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/lib/index.js",
"import": "./dist/es/index.js",
"types": "./dist/types/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/astel-org/astel"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"dev": "nuxi dev --open",
"start": "nuxi preview",
"generate": "nuxi generate",
"build:docs": "nuxi build",
"build:lib": "astel collect && astel build && astel types",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:style",
"lint:fix": "eslint --fix .",
"lint:eslint": "eslint ./**/*.{ts,vue}",
"lint:prettier": "prettier -w -u ./**/*.{ts,vue}",
"lint:style": "stylelint --fix \"./**/*.less\" --custom-syntax postcss-less",
"prepublishOnly": "yarn build:lib",
"release": "np"
},
"sideEffects": false,
"peerDependencies": {
"vue": "^3.2.37"
},
"dependencies": {
"@astel/icons": "^0.0.6",
"@pinia/nuxt": "^0.3.1",
"pinia": "^2.0.17"
},
"devDependencies": {
"@astel/cli": "^0.0.8",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/vue": "^3.2.1",
"@kolhe/eslint-config": "^1.1.5",
"@nuxt/content": "^2.0.1",
"@nuxtjs/tailwindcss": "^5.3.1",
"@tailwindcss/typography": "^0.5.4",
"@types/node": "^18.6.3",
"@types/prettier": "^2.6.4",
"autoprefixer": "^10.4.8",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"np": "^7.6.2",
"nuxt": "^3.0.0-rc.6",
"postcss": "^8.4.14",
"postcss-custom-properties": "^12.1.8",
"postcss-less": "^6.0.0",
"prettier": "2.7.1",
"rollup-plugin-postcss": "^4.0.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"tailwindcss": "^3.1.7",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vue": "^3.2.37",
"vue-tsc": "^0.39.4"
},
"resolutions": {
"parse-entities": "^4.0.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{css,scss,vue}": "stylelint --fix",
"*": "prettier -w -u"
}
}