-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "self-ip",
"version": "1.0.0",
"description": "Get self IP addresses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"test": "jest",
"build": "tsup src/index.ts --dts --format esm,cjs --target es5",
"clean": "rimraf dist",
"prepare": "run-s clean build"
},
"files": [
"dist"
],
"dependencies": {
"is-lo": "^1.0.0"
},
"devDependencies": {
"@swc/core": "^1.3.24",
"@types/jest": "^29.2.4",
"@types/lodash.sortby": "^4.7.7",
"@types/node": "^18.11.17",
"jest": "^29.3.1",
"lodash.sortby": "^4.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"author": {
"name": "Pine Mizune",
"email": "[email protected]",
"url": "https://github.com/pine"
},
"repository": {
"type": "git",
"url": "https://github.com/pine/self-ip"
},
"bugs": {
"url": "https://github.com/pine/self-ip/issues"
},
"homepage": "https://github.com/pine/self-ip",
"license": "MIT"
}