-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"author": "super16",
"description": "Plugin for Vue.js 3.x to use Tachyons CSS UI Kit selectors as directives in components.",
"devDependencies": {
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"execa": "^8.0.1",
"tachyons": "^4.12.0",
"typescript": "^5.4.3",
"vitepress": "1.0.0",
"vue": "^3.4.21"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"exports": {
".": "./src/index.js"
},
"homepage": "https://github.com/super16/vue-tachyons-directives-plugin",
"keywords": [
"css",
"tachyons",
"vue.js directives",
"vue.js",
"vue plugin"
],
"license": "MIT",
"main": "./src/index.js",
"name": "vue-tachyons-directives-plugin",
"repository": "github:super16/vue-tachyons-directives-plugin",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint ./src --ext .js,.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"deploy:docs": "node scripts/gh-pages-deploy.mjs"
},
"version": "0.3.0"
}