-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 2.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "siroc",
"version": "0.16.0",
"description": "Zero-config build tooling for Node",
"keywords": [
"node",
"nodejs",
"typescript",
"javascript",
"rollup",
"bundle",
"package"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danielroe/siroc.git"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"bin": {
"siroc": "bin/cli.js",
"siroc-runner": "bin/runtime.js"
},
"files": [
"dist/**/*",
"dist/index.d.ts",
"!**/*.map"
],
"scripts": {
"bootstrap": "rollup -c && chmod a+x bin/* && pnpm build",
"build": "bin/cli.js build",
"postinstall": "husky install",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .js,.ts,.vue .",
"lint:all:prettier": "pnpm lint:prettier \"**/*.{js,json,ts,vue}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"prepare": "pnpm husky install && pnpm bootstrap",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "release-it",
"test": "jest",
"watch": "pnpm build --watch"
},
"dependencies": {
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"cac": "^6.7.3",
"chalk": "^4.1.2",
"consola": "^2.15.3",
"defu": "^5.0.0",
"detect-indent": "^6.1.0",
"esbuild": "^0.12.24",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"jiti": "^1.11.0",
"mkdist": "^0.3.3",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "4.5.0",
"sort-package-json": "^1.50.0",
"typescript": "^4.4.2",
"upath": "^2.0.1",
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@release-it/conventional-changelog": "^3.3.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.8",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"codecov": "^3.8.3",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-environment-node": "^27.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"release-it": "14.11.5",
"semver": "^7.3.5",
"typescript": "^4.4.2"
},
"packageManager": "[email protected]",
"volta": {
"node": "12.22.1"
}
}