-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "use-dnd",
"version": "1.2.3",
"description": "A lighter drag-and-drop library for React",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build:types": "tsc",
"build:esm": "swc -d dist src/",
"build": "run-p build:**",
"prepack": "run-p build",
"watch": "run-p -l \"build:** --watch\"",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"src",
"dist"
],
"author": "TheUnlocked",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.4",
"@types/react": "^18.0.19",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chokidar": "^3.5.3",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-hooks-addons": "^0.3.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18.2.0"
}
}