-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "@hank-it/ui",
"version": "2.0.1",
"type": "module",
"exports": {
"./service/pagination": "./src/service/pagination/index.ts",
"./service/requests": "./src/service/requests/index.ts",
"./service/requests/exceptions": "./src/service/requests/exceptions/index.ts",
"./service/laravel/requests": "./src/service/laravel/requests/index.ts",
"./service/laravel/pagination": "./src/service/laravel/pagination/index.ts",
"./helpers": "./src/helpers.ts",
"./vue": "./src/vue/index.ts"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage",
"build-only": "vite build",
"lint": "eslint \"src/**/*.{js,vue,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,vue,ts}\" --fix",
"format": "prettier --check src/",
"type-check": "tsc --noEmit"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*",
"@rollup/rollup-linux-x64-musl": "*",
"@rollup/rollup-win32-x64-gnu": "*",
"@rollup/rollup-win32-x64-musl": "*"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.28",
"@types/qs": "^6.9.18",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@typescript-eslint/typescript-estree": "^8.21.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-v8": "^3.0.4",
"@vue/eslint-config-typescript": "^14.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"npm-run-all2": "^6.1.2",
"prettier": "^3.0.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"vite": "^5.1.6",
"vitest": "^3.0.4",
"vue": "^3.4.25",
"vue-router": "^4.3.2"
},
"dependencies": {
"qs": "^6.12.0"
}
}