-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.92 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
{
"name": "is-bun-module",
"author": "SunsetTechuila <[email protected]>",
"description": "Is this specifier a Bun core module or supported Node one?",
"version": "1.0.1",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": {
"default": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.mts"
},
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
}
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/SunsetTechuila/is-bun-module",
"repository": "github:SunsetTechuila/is-bun-module",
"bugs": {
"url": "https://github.com/SunsetTechuila/is-bun-module/issues"
},
"keywords": [
"core",
"modules",
"module",
"node",
"dependencies",
"bun"
],
"scripts": {
"build": "bun --bun tsup",
"check-all": "concurrently --kill-others=failure 'bun run test' 'bun lint' 'bun type-check' 'bun format:check'",
"test": "bun run build && bun test",
"format": "bun format:base --write",
"format:check": "bun format:base --check",
"format:base": "bun --bun prettier . --cache",
"lint": "bun --bun eslint . --cache",
"type-check": "bun --bun tsc",
"postinstall": "bun --bun husky"
},
"dependencies": {
"semver": "^7.6.3"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.10.0",
"@semantic-release/exec": "^6.0.3",
"@types/bun": "^1.1.8",
"@types/eslint__js": "^8.42.3",
"@types/semver": "^7.5.8",
"concurrently": "^9.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}