-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 927 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 927 Bytes
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
{
"name": "@chunkd/base",
"version": "0.1.0",
"scripts": {
"clean": "tsc -b --clean",
"build": "tsc -b --pretty",
"build-watch": "tsc -b --pretty --watch",
"version": "eslint lerna.json --fix",
"bump": "lerna version --conventional-commits --no-push --sign-git-commit --sign-git-tag",
"lint": "oxlint . --type-aware --fix && oxfmt . --write",
"check": "oxlint . --type-aware && oxfmt . --check",
"test": "lerna run test",
"test:e2e": "cd packages/conformance && node src/index.ts"
},
"type": "module",
"private": true,
"keywords": [],
"author": "Blayne Chard",
"license": "ISC",
"description": "",
"devDependencies": {
"lerna": "^9.0.3",
"oxfmt": "^0.42.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"typescript": "^6.0.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
}
}