-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
{
"name": "create-browser-app",
"version": "2.7.2",
"description": "",
"bin": {
"create-browser-app": "./dist/cli.js"
},
"files": [
"dist",
"template",
"examples"
],
"scripts": {
"build": "tsup src/cli.ts --format esm --dts --clean",
"dev": "tsup src/cli.ts --format esm --dts --watch",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build",
"start": "rm -rf ignore && rm -rf dist && pnpm run build && node dist/cli.js",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"tsup": "^8.3.5"
},
"exports": {
".": {
"import": "./dist/cli.mjs",
"require": "./dist/cli.js"
}
},
"types": "./dist/cli.d.ts",
"publishConfig": {
"access": "public"
},
"type": "module",
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}