-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@bitflow/task-input",
"version": "0.5.0",
"author": "Mike Barkmin",
"homepage": "https://github.com/openpatch/bitflowj#readme",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs.js",
"default": "./dist/index.esm.mjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/bitflow.git",
"directory": "packages/task-input"
},
"bugs": {
"url": "https://github.com/openpatch/bitflow/issues"
},
"scripts": {
"prebuild": "rimraf dist",
"version": "pnpm build",
"lint": "tsc --noEmit",
"test": "jest --env=jsdom --passWithNoTests",
"build": "pnpm build:locales && pnpm build:pkg && pnpm build:types",
"build:pkg": "node ../../scripts/build.mjs",
"build:locales": "vocab compile",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
},
"dependencies": {
"@bitflow/core": "workspace:*",
"@bitflow/provider": "workspace:*",
"@hookform/resolvers": "^2.9.7",
"immer": "^9.0.15",
"react-tagcloud": "^2.3.1"
},
"peerDependencies": {
"@emotion/cache": "11.x",
"@emotion/react": "11.x",
"@emotion/styled": "11.x",
"@openpatch/patches": "6.x",
"@vocab/core": "1.x",
"@vocab/react": "1.x",
"react": "18.x",
"react-dom": "18.x",
"react-hook-form": "7.x",
"zod": "3.x"
},
"devDependencies": {
"@babel/core": "7.19.6",
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@openpatch/patches": "6.0.1",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@vocab/core": "1.1.1",
"@vocab/react": "1.1.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.38.0",
"zod": "3.19.1"
}
}