-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 KB
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
{
"name": "@binaryjack/formular.dev",
"description": "A modern form framework-agnostic builder, featuring a user-friendly interface, customizable components, and robust validation.",
"keywords": [
"form",
"builder",
"framework-agnostic",
"typescript",
"javascript"
],
"version": "1.0.56",
"main": "dist/formular-dev.cjs",
"module": "dist/formular-dev.mjs",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/formular-dev.mjs",
"require": "./dist/formular-dev.cjs",
"default": "./dist/formular-dev.mjs"
},
"./config": "./src/core/managers/configuration-manager/default/default-configuration.json"
},
"scripts": {
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"dev": "vite build --mode development --watch",
"prepublishOnly": "pnpm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:performance": "jest --testMatch='**/*performance*.test.ts' --verbose --runInBand"
},
"author": "Piana Tadeo",
"license": "MIT",
"devDependencies": {
"@types/cypress": "^1.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.30",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.4.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/binaryjack/formular.dev.git"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}