-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"private": true,
"packageManager": "[email protected]",
"name": "traqula",
"type": "module",
"repository": "git+https://github.com/comunica/traqula/",
"workspaces": [
"engines/*",
"packages/*"
],
"scripts": {
"bench": "vitest bench --run",
"build": "yarn build:ts && yarn build:transpile && yarn build:transpile-spec",
"build:ts": "tsc",
"build:transpile": "lerna run build:transpile",
"build:transpile-spec": "lerna run build:transpile-spec",
"clean": "git clean -dfx",
"depcheck": "lerna exec --concurrency 1 -- depcheck --ignores=\"vitest\"",
"lint": "eslint",
"postinstall": "yarn husky && yarn run build",
"publish": "yarn run build",
"spec:all": "lerna run spec:all --concurrency 1",
"spec:earl": "lerna run spec:earl --concurrency 1",
"test": "vitest test --run",
"version": "manual-git-changelog onversion"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@rdfjs/types": "^2.0.0",
"@vitest/coverage-v8": "2.1.8",
"depcheck": "^1.4.7",
"esbuild": "^0.24.0",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"lerna": "8.1.4",
"manual-git-changelog": "^1.0.2",
"rdf-test-suite": "^2.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.3"
}
}