-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "fmr",
"version": "0.0.3-beta5",
"description": "A CLI that lets you experience modern monorepo project quickly and easily",
"main": "dist/index.cjs",
"bin": {
"fmr": "dist/index.cjs"
},
"files": [
"dist",
"templates",
"node_modules"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WJCHumble/fmr.git"
},
"keywords": [
"monorepo",
"pnpm",
"turbo",
"changesets"
],
"author": "wuliu <wujingchang5@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WJCHumble/fmr/issues"
},
"homepage": "https://github.com/WJCHumble/fmr#readme",
"packageManager": "pnpm@6.29.0",
"dependencies": {
"@changesets/cli": "^2.20.0",
"cac": "^6.7.12",
"decamelize-keys": "^1.1.0",
"enquirer": "^2.3.6",
"picocolors": "^1.0.0",
"semver": "^7.3.5",
"shelljs": "^0.8.5",
"turbo": "^1.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"rollup": "^2.67.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}