-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 885 Bytes
/
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
{
"name": "@clinth/remote",
"version": "2.1.2",
"description": "",
"module": "dist/index.min.mjs",
"unpkg": "dist/index.umd.min.js",
"exports": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prepublish": "npm run build",
"build": "npm run clean && tsc && npm run bundle",
"dev": "concurrently \"tsc --watch\" \"rollup dist/index.js --file dist/index.mjs --format esm --watch\"",
"bundle": "rollup dist/index.js --file dist/index.mjs --format esm"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"rimraf": "^6.0.1",
"rollup": "^4.21.1",
"typescript": "^5.5.4"
},
"repository": {
"url": "[email protected]:clinth/remote.git"
},
"dependencies": {
"concurrently": "^8.2.2",
"live-server": "^1.2.2"
}
}