formfx 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/LICENSE +28 -0
- package/README.ja.md +171 -0
- package/README.md +171 -0
- package/dist/chunk-6E5EWQVW.js +62 -0
- package/dist/chunk-6E5EWQVW.js.map +1 -0
- package/dist/chunk-GXMPHKTF.cjs +62 -0
- package/dist/chunk-GXMPHKTF.cjs.map +1 -0
- package/dist/editor.cjs +2 -0
- package/dist/editor.cjs.map +1 -0
- package/dist/editor.d.cts +141 -0
- package/dist/editor.d.ts +141 -0
- package/dist/editor.js +2 -0
- package/dist/editor.js.map +1 -0
- package/dist/index.cjs +138 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +138 -0
- package/dist/index.js.map +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "formfx",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Powerful & Lightweight form control library with data attributes and safe expression evaluation.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./editor": {
|
|
16
|
+
"types": "./dist/editor.d.ts",
|
|
17
|
+
"import": "./dist/editor.js",
|
|
18
|
+
"require": "./dist/editor.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./editor.css": "./dist/editor.css"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"lint": "tsc --noEmit",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"test:ui": "vitest --ui",
|
|
32
|
+
"test:e2e": "playwright test",
|
|
33
|
+
"prepublishOnly": "npm run lint && npm run test && npm run build"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"form",
|
|
37
|
+
"validation",
|
|
38
|
+
"dynamic-form",
|
|
39
|
+
"typescript",
|
|
40
|
+
"low-code",
|
|
41
|
+
"declarative"
|
|
42
|
+
],
|
|
43
|
+
"author": "https://monou.jp/",
|
|
44
|
+
"license": "BSD-3-Clause",
|
|
45
|
+
"sideEffects": [
|
|
46
|
+
"**/*.css"
|
|
47
|
+
],
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/monou-jp/formfx"
|
|
51
|
+
},
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/monou-jp/formfx/issues"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/monou-jp/formfx#readme",
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@playwright/test": "^1.57.0",
|
|
58
|
+
"@types/jsdom": "^27.0.0",
|
|
59
|
+
"@vitest/browser": "^4.0.17",
|
|
60
|
+
"jsdom": "^27.4.0",
|
|
61
|
+
"playwright": "^1.57.0",
|
|
62
|
+
"tsup": "^8.0.0",
|
|
63
|
+
"typescript": "^5.0.0",
|
|
64
|
+
"vitest": "^4.0.17"
|
|
65
|
+
}
|
|
66
|
+
}
|