-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
{
"name": "@niku/ez-form",
"title": "Ez Form",
"description": "Powerful, Easy-to-use form package",
"version": "1.4.1",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"license": "MIT",
"private": false,
"author": {
"name": "Niku",
"url": "https://github.com/niku98",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/niku98/ez-form"
},
"homepage": "https://niku98.github.io/ez-form",
"scripts": {
"dev": "tsup --watch --onSuccess 'yarn build:style && yarn post-build && yarn prepare-example && yarn example dev'",
"build": "tsup",
"post-build": "yarn copy:package-json && yarn copy:types && yarn copy:readme",
"build:style": "sass --no-source-map ./src/styles/index.scss ./dist/styles/index.css && cp ./src/styles/index.scss ./dist/styles/index.scss",
"copy:types": "cp src/types.d.ts dist/types.d.ts",
"copy:package-json": "cp package.json dist/package.json",
"copy:readme": "cp README.md dist/README.md",
"link-package": "cd dist && yarn unlink && yarn link && cd ..",
"docs:dev": "vitepress dev docs --port 8989",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"vitepress": "vitepress",
"preview": "vite preview",
"example": "yarn --cwd example",
"prepare-example": "yarn link-package && yarn example && yarn example link @niku/ez-form"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vue",
"vue3",
"vue 3",
"vuejs",
"vue-form",
"vuejs-form",
"form",
"form-handling",
"validate",
"validation",
"validator"
],
"dependencies": {
"@vue/devtools-api": "^6.5.0",
"async-validator": "^4.2.5"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@types/jsdom": "^20.0.0",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^3.1.2",
"ant-design-vue": "^3.2.20",
"sass": "^1.55.0",
"tsup": "^7.1.0",
"typescript": "^5.1.3",
"vitepress": "^1.0.0-beta.1",
"vue": "^3.0.0"
}
}