-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 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
78
79
80
{
"name": "create-bedframe",
"description": "@bedframe/cli - standalone MAKE command",
"author": {
"name": "Joe Nyaggah",
"url": "https://bedframe.dev"
},
"version": "0.0.49",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/create-bedframe.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/create-bedframe.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"create-bedframe": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "pnpm clean && tsc && rollup -c",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --apply .",
"lint:format": "pnpm biome check --apply .",
"build:pack": "pnpm build && pnpm pack"
},
"dependencies": {
"@bedframe/cli": "workspace:^",
"@bedframe/core": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^12.1.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-string": "^3.0.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0"
},
"lint-staged": {
"*.{md,mdx,css,html,json,js}": [
"prettier --write ."
],
"*.{js,jsx,ts,tsx }": "eslint . --fix"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nyaggah/bedframe.git",
"directory": "packages/create-bedframe"
},
"publishConfig": {
"access": "public"
}
}