-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
106 lines (106 loc) · 3.44 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": "@blokkli/editor",
"version": "1.2.0",
"description": "Interactive page building experience for Nuxt",
"repository": "blokkli/editor",
"type": "module",
"private": false,
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build && find dist/ -type f -name '*.*' | grep '.spec.' | xargs rm -f",
"dev": "nuxi dev playground --host",
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"dev:minimal": "nuxi dev playground-minimal --host",
"dev:content": "nuxi dev playground-content --host",
"styles:build": "postcss ./css/index.css -o ./src/runtime/css/output.css",
"styles:watch": "postcss ./css/index.css -o ./src/runtime/css/output.css --watch",
"dev:build": "npm run dev:prepare && nuxi generate playground",
"dev:start": "npx serve playground/.output/public",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run prepack && changelogen --release",
"texts": "node ./scripts/texts/index.cjs",
"generate-types": "node ./scripts/generateTypes/index.cjs",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"cypress:open": "cypress open"
},
"author": {
"name": "Jan Hug",
"url": "https://dulnan.net",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@nuxt/kit": "^3.13.1",
"artboard-deluxe": "^0.0.1",
"estree-walker-ts": "^1.0.1",
"fzf": "^0.5.2",
"get-video-id": "^4.1.7",
"html-diff-ts": "^1.4.2",
"mitt": "^3.0.1",
"qrcode.vue": "^3.4.1",
"twgl.js": "^5.5.4"
},
"devDependencies": {
"@ckeditor/ckeditor5-build-classic": "^43.1.0",
"@ckeditor/ckeditor5-vue": "^7.0.0",
"@nuxt/content": "^2.13.2",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.2",
"@nuxtjs/tailwindcss": "^6.12.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/gettext-parser": "^4.0.4",
"@types/node": "^22.5.4",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.5.5",
"cypress": "^13.14.2",
"eslint": "^8.57.0",
"eslint-plugin-sonarjs": "^2.0.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"gettext-parser": "^8.0.0",
"happy-dom": "^15.7.4",
"nuxt": "^3.13.1",
"nuxt-svg-icon-sprite": "^1.0.2",
"openai": "^4.59.0",
"playwright-core": "^1.47.0",
"postcss": "^8.4.45",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-mixins": "^11.0.1",
"postcss-nested-import": "^1.3.0",
"postcss-replace": "^2.0.1",
"postcss-url": "^10.1.3",
"prettier": "^3.3.3",
"prettier-plugin-glsl": "^0.2.0",
"tailwindcss": "^3.4.11",
"vite-plugin-glsl": "^1.3.0",
"vitepress": "^1.3.4",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
},
"overrides": {
"@parcel/watcher": "~2.1.0"
}
}