-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "onsubmit",
"author": "Ammar Halees <[email protected]>",
"license": "MIT",
"version": "0.0.19",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Simple validation utilities in typescript.",
"repository": {
"type": "git",
"url": "https://github.com/AmmarHalees/onsubmit"
},
"url": "https://on-submit-website.vercel.app/",
"bugs": {
"url": "https://github.com/AmmarHalees/onsubmit/issues"
},
"homepage": "https://github.com/AmmarHalees/onsubmit",
"support": {
"backing": {
"npm-funding": true
}
},
"exports": {
".": "./dist/index.js",
"./types": "./dist/types/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts && tsup src/types/index.ts --format cjs,esm --dts --outDir dist/types",
"release": "pnpm run ci && changeset publish",
"lint": "tsc",
"dev": "vitest",
"test": "vitest run",
"trace": "tsc --generateTrace trace --incremental false && cat trace/trace.json",
"ci": "pnpm run lint && pnpm run test && pnpm run build && bundlesize"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/jsdom": "^21.1.6",
"bundlesize": "^0.18.1",
"jsdom": "^23.0.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^1.0.4"
},
"keywords": [
"onsubmit",
"typescript",
"form validation",
"submit",
"form",
"react",
"reactjs",
"react-form",
"react-forms",
"react-forms-validation"
]
}