-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.94 KB
/
package.json
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
77
78
79
80
{
"name": "feature-react",
"version": "0.0.35",
"private": false,
"description": "ReactJs extension features for feature-state",
"keywords": [],
"homepage": "https://builder.group/?source=package-json",
"bugs": {
"url": "https://github.com/builder-group/community/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/community.git"
},
"license": "MIT",
"author": "@bennobuilder",
"exports": {
"./state": {
"source": "./src/state/index.ts",
"require": "./dist/state/cjs/index.js",
"import": "./dist/state/esm/index.js",
"types": "./dist/types/state/index.d.ts"
},
"./form": {
"source": "./src/form/index.ts",
"require": "./dist/form/cjs/index.js",
"import": "./dist/form/esm/index.js",
"types": "./dist/types/form/index.d.ts"
}
},
"typesVersions": {
"*": {
"state": [
"./dist/types/state/index.d.ts"
],
"form": [
"./dist/types/form/index.d.ts"
]
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "shx rm -rf dist && chmod +x ../../scripts/cli.sh && ../../scripts/cli.sh bundle",
"build:prod": "pnpm build -t prod",
"clean": "shx rm -rf dist && shx rm -rf node_modules && shx rm -rf .turbo",
"install:clean": "pnpm run clean && pnpm install",
"lint": "eslint . --fix",
"publish:patch": "pnpm build:prod && pnpm version patch && pnpm publish --no-git-checks --access=public",
"size": "size-limit --why",
"start:dev": "tsc -w",
"test": "vitest run",
"update:latest": "pnpm update --latest"
},
"dependencies": {
"@blgc/types": "workspace:*",
"@blgc/utils": "workspace:*"
},
"devDependencies": {
"@blgc/config": "workspace:*",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"feature-form": "workspace:*",
"feature-state": "workspace:*",
"react": "^19.0.0"
},
"peerDependencies": {
"react": "^18.3.1"
},
"size-limit": [
{
"path": "dist/state/esm/index.js"
},
{
"path": "dist/form/esm/index.js"
}
]
}