-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 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
{
"name": "vue-ts-types",
"version": "1.7.1",
"description": "Lightweight TypeScript-first Vue prop type definitions",
"keywords": [
"vue",
"vue2",
"vue3",
"vuejs",
"vuejs2",
"vuejs3",
"typescript",
"prop-types",
"props",
"proptype-validators",
"proptypes",
"hacktoberfest"
],
"homepage": "https://github.com/FloEdelmann/vue-ts-types",
"bugs": {
"url": "https://github.com/FloEdelmann/vue-ts-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FloEdelmann/vue-ts-types.git"
},
"license": "MIT",
"author": "Flo Edelmann",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier . --write",
"lint": "npm run lint:eslint && npm run lint:markdownlint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:markdownlint": "markdownlint \"**/*.md\"",
"lint:prettier": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest watch",
"type-test": "tstyche",
"type-test:watch": "tstyche --watch"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@vitest/eslint-plugin": "^1.1.24",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-package-json": "^0.19.0",
"eslint-plugin-unicorn": "^56.0.1",
"lefthook": "^1.10.1",
"markdownlint-cli": "^0.43.0",
"prettier": "3.4.2",
"tstyche": "^3.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"vitest": "^3.0.0-beta.3",
"vue": "^3.5.13",
"vue2-6": "npm:vue@~2.6.14",
"vue2-7": "npm:vue@~2.7.16"
},
"peerDependencies": {
"vue": "^2.6 || ^3.2"
}
}