-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "loveform",
"version": "0.3.1",
"description": "The Vue form assembly tool that won't break your heart 💔",
"homepage": "https://loveform.daleal.dev",
"repository": "https://github.com/daleal/loveform",
"bugs": "https://github.com/daleal/loveform/issues",
"license": "MIT",
"author": {
"name": "Daniel Leal",
"email": "dlleal@uc.cl"
},
"main": "dist/main.umd.js",
"module": "dist/main.es.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"require": "./dist/main.umd.js",
"import": "./dist/main.es.js"
}
},
"sideEffects": false,
"scripts": {
"bump!": "sh scripts/bump.sh",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts,.tsx,.vue .",
"test": "run-p test:*",
"test:vitest": "vitest run --coverage",
"watch:build": "run-p watch:build:*",
"watch:build:scripts": "vite build --watch",
"watch:build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch",
"version:get": "node -p \"require('./package.json').version\""
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^8.4.1",
"jsdom": "^19.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vitest": "^0.5.9",
"vue": "^3.2.33",
"vue-tsc": "^0.29.8"
},
"overrides": {
"minimist": ">=1.2.6"
},
"files": [
"dist"
]
}