@websolutespa/bom-mixer-forms 0.0.1

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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@websolutespa/bom-mixer-forms",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "keywords": [
6
+ "bom",
7
+ "mixer",
8
+ "forms"
9
+ ],
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git://github.com/websolutespa/bom.git"
14
+ },
15
+ "prepack": {
16
+ "types": "./dist/index.d.ts",
17
+ "main": "./dist/index.js",
18
+ "module": "./dist/index.mjs"
19
+ },
20
+ "postpack": {
21
+ "types": "./src/index.ts",
22
+ "main": "./src/index.ts"
23
+ },
24
+ "sideEffects": false,
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "scripts": {
29
+ "build": "tsup ./src/index.ts --format esm,cjs --dts --external react",
30
+ "lint": "eslint *.ts*",
31
+ "test": "jest",
32
+ "test-watch": "npm test -- --watch",
33
+ "coverage:integration": "npm run test -- --coverage",
34
+ "coverage": "run-s -c --silent coverage:*",
35
+ "coverage-open": "open-cli coverage/lcov-report/index.html",
36
+ "prepack": "bom prepack",
37
+ "postpack": "bom postpack"
38
+ },
39
+ "dependencies": {
40
+ "@websolutespa/bom-mixer-core": "*",
41
+ "@websolutespa/bom-mixer-hooks": "*",
42
+ "styled-components": "^5.3.5"
43
+ },
44
+ "devDependencies": {
45
+ "@types/react": "^18.0.18",
46
+ "@types/react-dom": "^18.0.6",
47
+ "@types/styled-components": "^5.1.26",
48
+ "@websolutespa/bom-cli": "*",
49
+ "@websolutespa/test": "*",
50
+ "@websolutespa/tsconfig": "*",
51
+ "eslint": "^8.23.0",
52
+ "eslint-config-websolute": "*",
53
+ "raw-loader": "^4.0.2",
54
+ "react": "^18.2.0",
55
+ "ts-node": "^10.9.1",
56
+ "tsup": "^6.6.3",
57
+ "typescript": "^4.8.2"
58
+ },
59
+ "types": "./dist/index.d.ts",
60
+ "main": "./dist/index.js",
61
+ "module": "./dist/index.mjs"
62
+ }