@chocbite/ts-lib-form 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/dist/index.d.mts +901 -0
- package/dist/index.mjs +5090 -0
- package/dist/style.css +1823 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@chocbite/ts-lib-form",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Form fields UI library for TypeScript",
|
|
5
|
+
"author": "chocolateandmilkwin",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"private": false,
|
|
9
|
+
"module": "./dist/index.mjs",
|
|
10
|
+
"types": "./dist/index.d.mts",
|
|
11
|
+
"style": "./dist/index.css",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/index.mjs",
|
|
18
|
+
"types": "./dist/index.d.mts",
|
|
19
|
+
"style": "./dist/index.css"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite --port 9989",
|
|
27
|
+
"build": "tsdown src/index.ts",
|
|
28
|
+
"lint": "eslint src/**/*.ts",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"check-trials": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "npm run check-trials && npm run build",
|
|
32
|
+
"upgrades": "npx npm-check-updates --target semver",
|
|
33
|
+
"upgrade": "npx npm-check-updates --target semver -u && npm install"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@chocbite/ts-supplement-eslint": "^1.0.0",
|
|
37
|
+
"@chocbite/ts-lib-common": "^1.2.2",
|
|
38
|
+
"@chocbite/ts-lib-icons": "^1.1.0",
|
|
39
|
+
"@tsdown/css": "^0.21.7",
|
|
40
|
+
"@vitest/browser-playwright": "^4.1.3",
|
|
41
|
+
"eslint": "^10.2.0",
|
|
42
|
+
"sass": "^1.99.0",
|
|
43
|
+
"tsdown": "^0.21.7",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"typescript-eslint": "^8.58.0",
|
|
46
|
+
"vite": "^8.0.6",
|
|
47
|
+
"vitest": "^4.1.3"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@chocbite/ts-lib-colors": "^1.0.0",
|
|
51
|
+
"@chocbite/ts-lib-string": "^1.0.0",
|
|
52
|
+
"@chocbite/ts-lib-list": "^1.0.0",
|
|
53
|
+
"@chocbite/ts-lib-base": "^1.4.2",
|
|
54
|
+
"@chocbite/ts-lib-theme": "^1.2.1",
|
|
55
|
+
"@chocbite/ts-lib-state": "^2.1.0"
|
|
56
|
+
}
|
|
57
|
+
}
|