-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@flareapp/react",
"version": "2.5.1",
"description": "React client for flareapp.io",
"homepage": "https://flareapp.io",
"bugs": "https://github.com/spatie/flare-client-js/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spatie/flare-client-js.git"
},
"license": "MIT",
"author": {
"name": "Spatie",
"email": "info@spatie.be"
},
"contributors": [
"Adriaan Marain <adriaan@spatie.be>",
"Alex Vanderbist <alex@spatie.be>",
"Dries Heyninck <dries@spatie.be>",
"Freek Van der Herten <freek@spatie.be>",
"Sebastian De Deyne <sebastian@spatie.be>",
"Sébastien Henau <seba@spatie.be>"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"sideEffects": [
"./dist/index.cjs",
"./dist/index.mjs"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./inject": {
"import": {
"types": "./dist/inject.d.mts",
"default": "./dist/inject.mjs"
},
"require": {
"types": "./dist/inject.d.cts",
"default": "./dist/inject.cjs"
}
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsdown src/index.ts src/inject.ts --format cjs,esm --dts --env.PACKAGE_VERSION=$(node -p \"require('./package.json').version\") --clean",
"test": "vitest run",
"typescript": "tsc --noEmit",
"verify:inject": "node scripts/verify-inject-no-root.mjs",
"release": "release-it"
},
"dependencies": {
"@flareapp/core": "2.5.1"
},
"devDependencies": {
"@flareapp/electron": "file:../electron",
"@flareapp/js": "file:../js",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jsdom": "^26.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsdown": "^0.20.3",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
},
"peerDependencies": {
"@flareapp/js": "^2.5.1",
"react": "^16.0.0||^17.0.0||^18.0.0||^19.0.0"
},
"publishConfig": {
"access": "public"
}
}