-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "simplefrontend",
"description": "Source code for the Simple Frontend CLI",
"author": "simple-frontend-dev",
"keywords": [
"frontend",
"cli",
"Simple Frontend"
],
"homepage": "https://simplefrontend.dev/",
"repository": {
"type": "git",
"url": "https://github.com/simple-frontend-dev/simple-frontend-cli"
},
"bugs": {
"url": "https://github.com/simple-frontend-dev/simple-frontend-cli/issues"
},
"license": "MIT",
"version": "1.0.0",
"type": "module",
"files": [
"dist"
],
"main": "dist/cli.js",
"bin": "./dist/cli.js",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "pnpm run build:dev && node dist/cli.js",
"build:dev": "rm -rf dist && tsc --noCheck",
"build": "rm -rf dist && tsc",
"test": "vitest run",
"check:types": "tsc --noEmit",
"check:exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"release": "pnpm build && pnpm check:exports && pnpm exec changeset publish"
},
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@changesets/cli": "2.29.5",
"@eslint/js": "9.32.0",
"@tsconfig/node-lts": "22.0.2",
"@tsconfig/strictest": "2.0.5",
"@types/node": "24.1.0",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"globals": "16.3.0",
"lefthook": "1.12.2",
"memfs": "4.35.0",
"prettier": "3.6.2",
"typescript": "5.9.2",
"typescript-eslint": "8.38.0",
"vitest": "3.2.4"
},
"dependencies": {
"@clack/prompts": "0.11.0",
"commander": "14.0.0",
"open": "10.2.0",
"package-manager-detector": "1.3.0",
"picocolors": "1.1.1",
"yaml": "2.8.0"
}
}