-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.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
{
"name": "paintbrush-ui",
"version": "0.5.0",
"description": "A flat UI component library",
"scripts": {
"build:docs": "ts-node-esm scripts/docs.ts",
"build:nuxt": "nuxi build",
"build": "npm-run-all build:docs build:nuxt",
"buildw:docs": "chokidar \"components/*.vue\" \"components/**/*.vue\" -c \"npm run build:docs {path}\"",
"clean": "rimraf coverage .nuxt .output",
"dev": "nuxi dev",
"license": "npm-run-all license:*",
"license:prod": "license-checker --summary --production --unknown --onlyAllow \"0BSD;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;MIT;CC-BY-4.0\"",
"license:all": "license-checker --summary --onlyAllow \"0BSD;Apache*;Apache-2.0;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;CC-BY-ND-4.0;ISC;MIT;Python-2.0;Unlicense\"",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint --cache --cache-location .stylelintcache --report-descriptionless-disables --report-needless-disables --report-invalid-scope-disables \"**/*.{scss,vue}\" \"*.{scss,vue}\"",
"lintw:css": "chokidar \"**/*.{scss,vue}\" -i \"{coverage,node_modules,.nuxt,.output}/**\" -c \"npm run lint:css -- --fix\"",
"lint:js": "eslint --ext .cjs,.js,.json,.mjs,.ts,.vue --cache --cache-file .eslintcache --report-unused-disable-directives .",
"lintw:js": "chokidar \"**/*.{cjs,js,json,ts,vue}\" -i \"{coverage,node_modules,.nuxt,.output}/**\" -c \"npm run lint:js -- --fix\"",
"lintw": "npm-run-all --parallel lintw:*",
"prepare": "nuxi prepare",
"start": "node .output/server/index.mjs",
"test": "vitest --coverage --run",
"typecheck": "nuxi typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaniFoldi/paintbrush.git"
},
"keywords": [
"component",
"component library",
"components",
"design",
"frontend",
"nuxt",
"nuxt 3",
"paintbrush",
"ui",
"vue",
"web"
],
"type": "module",
"author": "DaniFoldi",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaniFoldi/paintbrush/issues"
},
"homepage": "https://github.com/DaniFoldi/paintbrush#readme",
"devDependencies": {
"@lint-my-life/eslint-config-paintbrush": "^0.1.2",
"@lint-my-life/stylelint-paintbrush": "^0.1.1",
"@nuxt/content": "^2.3.0",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/critters": "^0.4.0",
"@nuxtjs/fontaine": "^0.2.3",
"@nuxtjs/html-validator": "^1.2.3",
"@nuxtjs/i18n": "^8.0.0-beta.7",
"@nuxtjs/ionic": "^0.8.0",
"@nuxtjs/partytown": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitest/coverage-c8": "^0.26.2",
"@vueuse/components": "^9.8.2",
"@vueuse/core": "^9.8.2",
"@vueuse/nuxt": "^9.8.2",
"chokidar-cli": "^3.0.0",
"defu": "^6.1.1",
"globby": "^13.1.3",
"json5": "^2.2.2",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"nuxt": "^3.0.0",
"nuxt-lodash": "^2.4.1",
"playwright": "^1.29.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.26.2",
"vue": "^3.2.45",
"vue-tsc": "^1.0.16"
},
"dependencies": {
"@fontsource/gantari": "^4.5.1",
"@fontsource/manrope": "^4.5.12",
"@fontsource/playfair-display": "^4.5.12",
"@fontsource/source-code-pro": "^4.5.12",
"@formkit/auto-animate": "^1.0.0-beta.5",
"@pinia-plugin-persistedstate/nuxt": "^1.0.0",
"@pinia/nuxt": "^0.4.6",
"atropos": "^1.0.2",
"chart.js": "^4.1.1",
"codemirror": "^6.0.1",
"iconoir": "^5.5.2",
"parse5": "^6.0.1",
"phosphor-icons": "^1.4.2",
"pinia": "^2.0.28",
"pinia-plugin-persistedstate": "^3.0.1",
"shiki-es": "^0.1.2",
"vue-chartjs": "^5.1.0",
"vue-codemirror": "^6.1.1"
}
}