-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "vuepal",
"version": "2.5.5",
"description": "Nuxt+Vue Drupal Integration",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/liip/vuepal",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "npm run dev:prepare && npm run styles:build && nuxt-module-build build && find dist/ -type f -name '*.*' | grep '.spec.' | xargs rm -f",
"dev": "nuxi dev playground --host",
"typecheck": "nuxi typecheck",
"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": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@nuxt/kit": "^3.13.1",
"astring": "^1.8.6",
"fzf": "^0.5.2",
"yaml": "^2.4.1"
},
"devDependencies": {
"@nuxt/devtools": "^1.4.2",
"@nuxt/eslint-config": "^0.5.6",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@types/node": "latest",
"@vue/test-utils": "^2.4.4",
"changelogen": "^0.5.5",
"eslint": "^9.10.0",
"happy-dom": "^13.3.8",
"prettier": "^3.2.5",
"nuxt": "^3.13.1",
"nuxt-language-negotiation": "^1.0.1",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"postcss-mixins": "^9.0.4",
"postcss-nested-import": "^1.3.0",
"postcss-replace": "^2.0.1",
"postcss-url": "^10.1.3",
"typescript": "latest",
"tailwindcss": "^3.4.1",
"vue-tsc": "^2.1.6"
}
}