-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "@akryum/sheep",
"version": "0.4.3",
"description": "Opinionated CLI command to release and update CHANGELOG.md",
"repository": {
"type": "git",
"url": "https://github.com/Akryum/sheep.git"
},
"license": "MIT",
"author": {
"name": "Guillaume Chau"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"sheep": "./bin.js"
},
"scripts": {
"build": "rimraf dist && rollup -c && chmod +x ./bin.js",
"prepublishOnly": "pnpm run build",
"watch": "rollup -c --watch"
},
"dependencies": {
"conventional-changelog-cli": "^2.2.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^14.14.21",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"esbuild": "^0.14.0",
"execa": "^6.1.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.0",
"pathe": "^0.2.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"rollup": "^2.68.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-esbuild": "^4.8.2",
"sade": "^1.8.1",
"semver": "^7.3.5",
"typescript": "^4.1.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"bin.js"
]
}