-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "remix-validity-state",
"version": "0.11.1",
"author": "[email protected]",
"description": "A Remix form validation library extending on the HTML ValidityState API",
"main": "./dist/remix-validity-state.cjs.js",
"module": "./dist/remix-validity-state.esm.js",
"types": "./dist/index.d.ts",
"files": [
"src/",
"dist/"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brophdawg11/remix-validity-state.git"
},
"keywords": [
"remix",
"form",
"input",
"validation",
"validitystate",
"validity"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/brophdawg11/remix-validity-state/issues"
},
"homepage": "https://github.com/brophdawg11/remix-validity-state#readme",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"clean": "rm -rf dist/",
"dev": "OUTPUT_DIR=demo-app/node_modules/remix-validity-state npm run build -- --watch",
"format": "prettier --ignore-path .eslintignore --write ./ && npm run lint -- --fix",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@babel/runtime": "7.21.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.0",
"@remix-run/eslint-config": "1.14.0",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "18.0.28",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"prettier": "2.8.4",
"rollup": "2.79.1",
"typescript": "4.9.5"
}
}