@flotrace/runtime-core 2.0.0

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,57 @@
1
+ {
2
+ "name": "@flotrace/runtime-core",
3
+ "version": "2.0.0",
4
+ "description": "Platform-agnostic core for FloTrace runtime — fiber walker, analyzers, trackers. Shared by @flotrace/runtime (web) and @flotrace/runtime-native (React Native).",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "typecheck": "tsc --noEmit",
22
+ "clean": "rm -rf dist",
23
+ "prepublishOnly": "npm run clean && npm run build && npm run typecheck",
24
+ "release:patch": "npm version patch && npm publish",
25
+ "release:minor": "npm version minor && npm publish",
26
+ "release:major": "npm version major && npm publish"
27
+ },
28
+ "peerDependencies": {
29
+ "react": ">=16.9.0",
30
+ "@types/react": ">=16.9.0"
31
+ },
32
+ "peerDependenciesMeta": {
33
+ "@types/react": {
34
+ "optional": true
35
+ }
36
+ },
37
+ "devDependencies": {
38
+ "tsup": "^8.0.0",
39
+ "typescript": "^5.3.0"
40
+ },
41
+ "keywords": [
42
+ "react",
43
+ "devtools",
44
+ "profiler",
45
+ "fiber",
46
+ "flotrace"
47
+ ],
48
+ "license": "MIT",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/flotrace/flotrace.git",
52
+ "directory": "packages/runtime-core"
53
+ },
54
+ "publishConfig": {
55
+ "access": "public"
56
+ }
57
+ }