-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@lexedwards/ts-utilities",
"description": "Monorepo for personal typecript-based utility packages",
"version": "1.0.0",
"author": "Alex Edwards <[email protected]> (https://alexedwards.co/)",
"repository": {
"type": "git",
"url": "https://github.com/lexedwards/ts-utilities.git"
},
"bugs": {
"url": "https://github.com/lexedwards/ts-utilities/issues"
},
"keywords": [],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ci:test": "turbo run build lint test",
"ci:version": "changeset version",
"ci:publish": "pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.11",
"eslint": "latest",
"prettier": "^2.8.8",
"turbo": "latest",
"typescript": "^5.1.6"
},
"private": true,
"packageManager": "[email protected]",
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all",
"semi": false
}
}