@nldoc/validation 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +357 -0
- package/dist/index.d.ts +388 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +922 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nldoc/validation",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Validation hooks and components for NLdoc TipTap integration",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"dev": "vite build --watch --mode development",
|
|
22
|
+
"check": "npx tsc --noEmit",
|
|
23
|
+
"format": "npx prettier . --write --ignore-path ../../.prettierignore",
|
|
24
|
+
"format:check": "npx prettier . --check --ignore-path ../../.prettierignore",
|
|
25
|
+
"lint": "npx -y eslint .",
|
|
26
|
+
"fix": "npm run format && npm run lint -- --fix"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"nldoc",
|
|
30
|
+
"tiptap",
|
|
31
|
+
"validation",
|
|
32
|
+
"accessibility",
|
|
33
|
+
"react"
|
|
34
|
+
],
|
|
35
|
+
"author": "NLdoc",
|
|
36
|
+
"license": "EUPL-1.2",
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"@nldoc/api": "^1.0.0",
|
|
39
|
+
"@nldoc/types": "^4.0.0",
|
|
40
|
+
"@tiptap/react": "^3.0.0",
|
|
41
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
42
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@nldoc/tiptap-extensions": "*",
|
|
46
|
+
"use-debounce": "^10.0.4"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@tiptap/react": "^3.0.0"
|
|
50
|
+
}
|
|
51
|
+
}
|