-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.12 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
74
75
76
77
78
79
80
81
82
83
{
"name": "formlink",
"description": "Laravel-Vue form helper library.",
"version": "1.2.4",
"type": "module",
"author": {
"name": "Jerome Thayananthajothy",
"email": "tjthavarshan@gmail.com"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/types/index.d.ts"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Thavarshan/formlink.git"
},
"bugs": {
"url": "https://github.com/Thavarshan/formlink.git/issues"
},
"homepage": "https://thavarshan.com",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build --config vite.config.ts",
"lint": "eslint ./src --ext .ts --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"format": "prettier --write .",
"clean": "rm -rf dist"
},
"dependencies": {
"axios": "^1.7.7",
"lodash": "^4.17.21",
"vue": "^3.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@types/lodash": "^4.17.10",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.29.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"form",
"helper",
"library",
"typescript"
]
}