forked from GrabarzUndPartner/nuxt-custom-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.68 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
{
"name": "nuxt-custom-elements",
"version": "1.9.1",
"description": "Publish your Components as a vue-custom-element standalone build.",
"keywords": [
"nuxtjs",
"vuejs",
"vue-custom-element",
"custom-element",
"shadow-dom"
],
"repository": {
"type": "git",
"url": "https://github.com/GrabarzUndPartner/nuxt-custom-elements"
},
"license": "MIT",
"author": "Thorn-Welf Walli",
"contributors": [
{
"name": "Thorn-Welf Walli",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"dev": "nuxt example",
"generate": "nuxt generate --config-file example/nuxt.config.js",
"build": "nuxt build --config-file example/nuxt.config.js",
"start:build": "npm run build && npm run static-server",
"lint": "npm run lint:es && npm run lint:css",
"lint:es": "eslint --ext .js,.vue .",
"lint:css": "stylelint \"example/**/*.vue\" \"example/**/*.css\", \"lib/**/*.vue\" \"lib/**/*.css\"",
"lint:report": "eslint --ext .js,.vue -f json-relative -o ./eslint-report.json .",
"test": "npm run lint && npm run vitest:run",
"vitest:run": "vitest run",
"vitest:dev": "vitest dev",
"start": "nuxt start --config-file example/nuxt.config.js",
"static-server": "node ./tools/static-server.js --dist dist"
},
"dependencies": {
"@ungap/custom-elements": "1.1.1",
"change-case": "4.1.2",
"clone": "2.1.2",
"defu": "6.1.0",
"vue-custom-element": "3.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@nuxt/postcss8": "1.1.3",
"@nuxtjs/eslint-config": "11.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@nuxtjs/stylelint-module": "4.1.0",
"babel-eslint": "10.1.0",
"commitlint": "17.2.0",
"core-js": "3.26.0",
"eslint": "8.27.0",
"eslint-formatter-json-relative": "0.1.0",
"eslint-plugin-no-secrets": "0.8.9",
"eslint-plugin-no-unsanitized": "4.0.1",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-sonarjs": "0.16.0",
"eslint-plugin-xss": "0.1.12",
"finalhandler": "1.2.0",
"get-port-please": "2.6.1",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"nuxt": "2.15.8",
"playwright": "1.27.1",
"postcss-html": "1.5.0",
"postcss-preset-env": "7.8.2",
"serve-static": "1.15.0",
"standard-version": "9.5.0",
"stylelint": "14.14.1",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-standard": "29.0.0",
"vite": "3.2.3",
"vitest": "0.25.1",
"webpack-dynamic-public-path": "1.0.8"
}
}