-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.82 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 4.82 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@cwa/nuxt",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"description": "Components Web Apps Nuxt Module. UI for creating component-driven web apps with the API Components Bundle",
"author": "Daniel West <daniel@silverback.is>",
"repository": {
"type": "git",
"url": "git+https://github.com/components-web-app/cwa-nuxt-module.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"directories": {
"layer": "./dist/layer"
},
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean-dist && pnpm run copy-layer && nuxt-module-build build && pnpm run tailwind:main && pnpm run tailwind:base",
"prepack": "pnpm build",
"clean-dist": "del dist/",
"copy-layer": "copyfiles -e \"./src/layer/**/*.spec.*\" -u 1 \"./src/layer/**\" dist/",
"dev": "concurrently --kill-others \"pnpm tailwind:watch\" \"pnpm dev:https\"",
"dev:https": "pnpm run dev:prepare && nuxi dev playground --https",
"dev:http": "pnpm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:test:types": "cd playground && vue-tsc",
"dev:preview:https": "NITRO_SSL_CERT=$(cat certs/localhost.pem) NITRO_SSL_KEY=$(cat certs/localhost.key.pem) nuxi preview playground",
"dev:prepare": "pnpm run tailwind:main && pnpm run tailwind:base && nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest --run --reporter=verbose",
"test:watch": "vitest --watch --reporter=verbose",
"test:watch:coverage": "vitest --watch --coverage --reporter=verbose",
"test:coverage": "vitest --run --coverage --reporter=verbose",
"test:types": "pnpm run module:test:types && pnpm run dev:test:types",
"module:test:types": "vue-tsc",
"stryker:init": "stryker init",
"stryker:run": "stryker run",
"tailwind:main": "postcss src/tailwind/tailwind-cwa.css -o ./src/runtime/templates/assets/cwa.css",
"tailwind:base": "postcss src/tailwind/tailwind-base.css -o ./src/runtime/templates/assets/base.css",
"tailwind:watch": "postcss src/tailwind/tailwind-cwa.css -o ./src/runtime/templates/assets/cwa.css --watch"
},
"dependencies": {
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/robots": "^6.0.8",
"@nuxtjs/seo": "^5.1.3",
"@nuxtjs/sitemap": "^8.0.15",
"@pinia/nuxt": "0.11.3",
"@popperjs/core": "^2.11.8",
"@tailwindcss/vite": "^4.2.4",
"@vueuse/core": "^14.3.0",
"consola": "^3.4.2",
"cookie": "^1.1.1",
"dayjs": "^1.11.20",
"defu": "^6.1.7",
"fast-xml-parser": "^5.7.3",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.18.1",
"luxon": "^3.7.2",
"mitt": "^3.0.1",
"pinia": "^3.0.4",
"set-cookie-parser": "^3.1.0",
"slugify": "^1.6.9",
"uuid": "^14.0.0",
"vue": "^3.5.34",
"vue-input-autowidth": "^2.2.1",
"vuejs-confirm-dialog": "^0.5.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@headlessui/vue": "^1.7.23",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/kit": "^4.4.4",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.4",
"@nuxt/test-utils": "4.0.3",
"@oxc-minify/binding-darwin-arm64": "^0.129.0",
"@oxc-parser/binding-darwin-arm64": "^0.129.0",
"@oxc-transform/binding-darwin-arm64": "^0.129.0",
"@pinia/testing": "^1.0.3",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.4",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.7.1",
"@types/object-hash": "^3.0.6",
"@types/set-cookie-parser": "^2.4.10",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"del-cli": "^7.0.0",
"eslint": "^10.3.0",
"globby": "^16.2.0",
"happy-dom": "^20.9.0",
"nuxt": "^4.4.4",
"pathe": "^2.0.3",
"playwright-core": "^1.59.1",
"postcss": "^8.5.14",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5",
"vitest-environment-nuxt": "^2.0.0",
"vue-tsc": "^3.2.8"
},
"pnpm": {
"auditConfig": {
"ignoreCves": []
},
"onlyBuiltDependencies": [
"@intlify/vue-i18n-bridge",
"@intlify/vue-router-bridge",
"@parcel/watcher",
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi"
],
"overrides": {}
},
"engines": {
"pnpm": ">=10.33.1"
}
}