-
-
Notifications
You must be signed in to change notification settings - Fork 917
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 887 Bytes
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
{
"name": "@dnd-kit/geometry",
"version": "0.5.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"LICENSE",
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"lint": "TIMING=1 eslint src/**/*.ts* --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/state": "^0.5.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@dnd-kit/eslint-config": "*",
"eslint": "^8.38.0",
"tsup": "8.3.0",
"typescript": "^5.5.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/clauderic/dnd-kit"
}
}