-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"description": "",
"scripts": {
"build:common": "pnpm run --filter @loom-io/common build",
"build:core": "pnpm run --filter @loom-io/core build",
"build:memory": "pnpm run --filter @loom-io/in-memory-adapter build",
"build:pre": "pnpm run build:common && pnpm run build:core && pnpm run build:memory",
"build": "pnpm run build:pre && pnpm run --recursive build",
"prepublishOnly": "pnpm run build:pre && pnpm run --recursive prepublishOnly",
"test": "vitest",
"test:ci": "vitest --run --coverage",
"lint": "pnpm run --recursive lint",
"lint:fix": "pnpm run --recursive lint:fix",
"clean:dist": "rm -rf */**/dist",
"clean:node_modules": "rm -rf */**/node_modules && rm -rf node_modules"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"maintainers": [
{
"name": "Wolfgang Rathgeb",
"email": "[email protected]"
}
],
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vitest/coverage-v8": "^2.1.4",
"publint": "^0.2.12",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cotton-coding/loom-io.git"
}
}