-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 774 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 774 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
37
{
"name": "@newfrgmnt/harmony",
"version": "1.0.3",
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/*"
],
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts --outDir build",
"prepublishOnly": "pnpm run build"
},
"keywords": [],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/newfrgmnt/harmony"
},
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.47",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"dependencies": {
"react-draggable": "^4.4.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
}