forked from tomphttp/bare-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@mercuryworkshop/bare-as-module3",
"version": "2.2.5",
"main": "./dist/index.js",
"homepage": "https://github.com/MercuryWorkshop/bare-as-module3",
"bugs": {
"url": "https://github.com/MercuryWorkshop/bare-as-module3/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/MercuryWorkshop/bare-as-module3.git"
},
"author": {
"name": "Mercury Workshop",
"email": "[email protected]",
"url": "https://mercurywork.shop"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"format": "prettier --config .prettierrc.js --write .",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"prepack": "npm run build"
},
"type": "module",
"license": "LGPL-3.0",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@mercuryworkshop/bare-mux": "^2.1.6",
"@rollup/plugin-inject": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0"
},
"files": [
"dist",
"lib"
],
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"node": {
"require": "./lib/index.cjs",
"import": "./lib/index.cjs"
}
}
},
"dependencies": {
"typescript": "^5.6.3"
}
}