-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "@typeofweb/ignore-monorepo-buildstep",
"version": "0.6.2",
"description": "Ignore Vercel buildstep in a pnpm monorepo",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"keywords": [
"Vercel",
"pnpm",
"monorepo"
],
"files": [
"dist/*.js",
"README.md",
"LICENSE.md",
"docs"
],
"author": "Michał Miszczyszyn <[email protected]> (https://typeofweb.com/)",
"repository": {
"url": "https://github.com/typeofweb/ignore-monorepo-buildstep"
},
"bugs": {
"url": "https://github.com/typeofweb/ignore-monorepo-buildstep/issues"
},
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "rm -rf dist && tsc -w",
"test": "ts-node-test src/utils.test.ts ",
"prepare": "husky install"
},
"lint-staged": {
"*.{mts,cts,ts,mjs,csj,js,md,json,yaml,yml}": "prettier --write"
},
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@types/node": "18.11.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-node-test": "0.2.0",
"typescript": "4.8.4"
},
"packageManager": "[email protected]"
}