-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "@1fe/create-1fe-app",
"version": "0.0.3",
"description": "Create new 1FE applications with pre-configured setup and best practices",
"keywords": [
"1fe",
"create-app",
"scaffold",
"generator",
"micro-frontend",
"cli",
"boilerplate",
"starter",
"template",
"frontend"
],
"main": "dist/cli.js",
"bin": "dist/cli.js",
"scripts": {
"run:cli": "node dist/cli.js",
"dev": "yarn build --watch",
"test": "jest",
"build": "tsup",
"prepack": "yarn build"
},
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@commander-js/extra-typings": "^14.0.0",
"@jest/globals": "^29.x",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.10.0",
"@types/jest": "^29.5.14",
"babel-jest": "^30.0.0",
"esbuild-raw-plugin": "^0.2.0",
"jest": "^29.x",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"chalk": "^5.4.1",
"es-main": "^1.3.0",
"simple-git": "^3.28.0"
}
}