forked from FloEdelmann/vue-ts-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "vue-ts-types",
"version": "1.2.0",
"description": "Lightweight TypeScript-first Vue prop type definitions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"type-test": "jest -c jest.config.tsd.ts",
"type-test:watch": "jest -c jest.config.tsd.ts --watch",
"lint": "eslint .",
"build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FloEdelmann/vue-ts-types.git"
},
"files": [
"dist"
],
"keywords": [
"vue",
"vuejs",
"typescript",
"vue2",
"vue3",
"vuejs2",
"vuejs3"
],
"author": "Flo Edelmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/FloEdelmann/vue-ts-types/issues"
},
"homepage": "https://github.com/FloEdelmann/vue-ts-types",
"devDependencies": {
"@tsd/typescript": "^4.6.4",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vue/composition-api": "^1.6.1",
"eslint": "^8.15.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^28.1.0",
"jest-extended": "^2.0.0",
"jest-runner-tsd": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vue": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6 || ^3.2"
}
}