forked from tomphttp/bare-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@nebula-services/bare-client",
"version": "1.1.2-beta.3-patch.1",
"homepage": "https://github.com/tomphttp",
"bugs": {
"url": "https://github.com/tomphttp/bare-client/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/NebulaServices/bare-client.git"
},
"author": {
"name": "TOMP Development",
"email": "[email protected]",
"url": "https://github.com/tomphttp"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw"
},
"type": "module",
"license": "GPL-3.0",
"exports": {
"import": "./dist/BareClient.js",
"require": "./dist/BareClient.cjs"
},
"browser": "dist/BareClient.cjs",
"main": "dist/BareClient.cjs",
"module": "dist/BareClient.js",
"types": "dist/BareClient.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
"@rollup/plugin-inject": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.1"
}
}