-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "components-helper",
"version": "2.2.0",
"description": "Based on the docs to provide code prompt files for vue component library",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"test": "node test/index.js",
"lint": "eslint . --fix --ext .ts,.js --ignore-pattern \"/lib/\"",
"prettier": "prettier --write \"src/*.ts\" --ignore-unknown",
"prepare": "husky install"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tolking/components-helper.git"
},
"keywords": [
"vue",
"components",
"component library",
"helper",
"vetur",
"webstrom",
"tags",
"attributes",
"web-types"
],
"author": "tolking <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tolking/components-helper/issues"
},
"homepage": "https://github.com/tolking/components-helper#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"rollup": "^2.66.0",
"rollup-plugin-typescript2": "^0.32.1",
"tslib": "^2.4.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
}
}