UNPKG

1.13 kBJSONView Raw
1{
2 "name": "vue-ast-utils",
3 "version": "1.0.1",
4 "description": "Utils for working with Vue 3 AST nodes",
5 "keywords": [
6 "vue",
7 "vue 3",
8 "ast",
9 "template",
10 "node",
11 "utils",
12 "typed"
13 ],
14 "license": "MIT",
15 "repository": "privatenumber/vue-ast-utils",
16 "funding": "https://github.com/privatenumber/vue-ast-utils?sponsor=1",
17 "author": {
18 "name": "Hiroki Osame",
19 "email": "hiroki.osame@gmail.com"
20 },
21 "type": "module",
22 "files": [
23 "dist"
24 ],
25 "main": "dist/index.js",
26 "scripts": {
27 "lint": "eslint .",
28 "build": "tsc"
29 },
30 "husky": {
31 "hooks": {
32 "pre-commit": "lint-staged"
33 }
34 },
35 "lint-staged": {
36 "*.{js,ts}": "eslint"
37 },
38 "peerDependencies": {
39 "@vue/compiler-core": "^3.0.7"
40 },
41 "devDependencies": {
42 "@pvtnbr/eslint-config-typescript": "^0.1.12",
43 "@vue/compiler-core": "^3.0.7",
44 "eslint": "^7.22.0",
45 "husky": "^4.3.8",
46 "lint-staged": "^10.5.4",
47 "typescript": "^4.2.3"
48 },
49 "eslintConfig": {
50 "extends": "@pvtnbr/eslint-config-typescript",
51 "rules": {
52 "unicorn/prevent-abbreviations": [
53 "error",
54 {
55 "replacements": {
56 "prop": false
57 }
58 }
59 ]
60 }
61 }
62}