-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.02 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
89
90
91
92
{
"name": "@ankhorage/react-native-reanimated-dnd-web",
"version": "0.3.2",
"license": "MIT",
"private": false,
"keywords": [
"react-native",
"drag-and-drop",
"dnd",
"expo",
"react-native-web",
"reanimated"
],
"description": "Web adapter for react-native-reanimated-dnd with upstream passthrough and parity-compatible web drag/drop and sortable support.",
"homepage": "https://github.com/ankhorage/react-native-reanimated-dnd-web#readme",
"bugs": {
"url": "https://github.com/ankhorage/react-native-reanimated-dnd-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankhorage/react-native-reanimated-dnd-web.git"
},
"type": "module",
"main": "dist/index.web.js",
"react-native": "dist/index.native.js",
"browser": "dist/index.web.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"react-native-reanimated-dnd": "~1.1.0"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.73",
"react-native-gesture-handler": ">=2",
"react-native-reanimated": ">=3"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
},
"react-native-gesture-handler": {
"optional": true
},
"react-native-reanimated": {
"optional": true
}
},
"scripts": {
"build": "tsup --config tsup.config.ts && bun run build:assert-artifacts",
"build:assert-artifacts": "node ./scripts/assert-artifacts.mjs",
"release:validate-meta": "node ./scripts/verify-version-sync.mjs",
"lint": "ankhorage-eslint . --max-warnings=0",
"lint:fix": "ankhorage-eslint . --fix --max-warnings=0",
"format": "ankhorage-prettier --write .",
"format:check": "ankhorage-prettier --check .",
"knip": "ankhorage-knip",
"test": "bun test src",
"check:parity": "bun ./scripts/check-export-parity.ts",
"test:e2e": "playwright test --config playwright.config.ts",
"demo:dev": "vite --config examples/vite.config.ts examples",
"demo:build": "vite build --config examples/vite.config.ts examples",
"consumer:matrix": "bash ./scripts/run-consumer-matrix.sh",
"pack:smoke": "rm -rf .artifacts .npm-cache && mkdir -p .artifacts .npm-cache && NPM_CONFIG_CACHE=.npm-cache npm pack --pack-destination .artifacts . && node ./scripts/verify-pack.mjs .artifacts",
"release:check": "bun run release:validate-meta && bun run check:parity && bun run build && bun run test && bun run pack:smoke",
"version-packages": "changeset version"
},
"devDependencies": {
"@ankhorage/devtools": "^1.0.6",
"@changesets/cli": "^2.31.0",
"@playwright/test": "^1.56.1",
"@types/bun": "^1.3.13",
"@vitejs/plugin-react": "^5.0.4",
"esbuild": "^0.27.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-native-web": "^0.21.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.1.7"
},
"packageManager": "bun@1.3.13"
}