forked from inspect-js/is-core-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@no-shims/is-core-module",
"version": "2.14.0",
"packageManager": "[email protected]",
"description": "Is this specifier a node.js core module?",
"type": "commonjs",
"keywords": [
"core",
"modules",
"module",
"npm",
"node",
"dependencies"
],
"license": "MIT",
"homepage": "https://github.com/inspect-js/is-core-module",
"bugs": {
"url": "https://github.com/inspect-js/is-core-module/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inspect-js/is-core-module.git"
},
"author": "Jordan Harband <[email protected]>",
"contributors": [
{
"name": "Kevin Deng",
"email": "[email protected]",
"url": "https://github.com/sxzz"
}
],
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"test": "vitest",
"build": "tsup",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@sxzz/eslint-config": "^3.13.0",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^20.14.8",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^1.6.0",
"bumpp": "^9.4.1",
"eslint": "^9.5.0",
"semver": "^7.6.2",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}