-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.9 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.9 KB
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
50
51
52
53
54
55
56
57
58
59
{
"name": "traqula",
"type": "module",
"private": true,
"packageManager": "yarn@1.22.22",
"repository": "git+https://github.com/comunica/traqula/",
"workspaces": [
"engines/*",
"packages/*"
],
"scripts": {
"bench": "vitest bench --run",
"build": "yarn build:chevrotain && yarn build:ts && yarn build:transpile && yarn build:cjs",
"build:chevrotain": "yarn workspace @traqula/chevrotain build",
"build:ts": "tsc -b",
"build:transpile": "lerna run build:transpile --ignore @traqula/chevrotain",
"build:cjs": "tsc -b tsconfig.cjs.json",
"clean": "git clean -dfx",
"depcheck": "lerna exec --concurrency 1 -- depcheck --ignores=\"vitest,esbuild,dts-bundle-generator\"",
"doc": "typedoc",
"lint": "eslint . --cache",
"postinstall": "yarn husky && yarn run build",
"lerna-publish": "yarn install && npm login && lerna publish",
"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": {
"@rdfjs/types": "^2.0.0",
"@rubensworks/eslint-config": "^3.1.0",
"@vitest/coverage-v8": "^4.1.3",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"lerna": "9.0.7",
"manual-git-changelog": "^1.0.2",
"rdf-test-suite": "^2.1.4",
"typedoc": "^0.28.18",
"typescript": "^6.0.0",
"vite": "^8.0.7",
"vitest": "^4.1.3"
},
"resolutions": {
"**/@isaacs/brace-expansion": "5.0.1",
"**/ajv": "6.14.0",
"**/axios": "1.15.0",
"**/flatted": "3.4.2",
"**/handlebars": "4.7.9",
"**/lodash": "4.18.1",
"**/lodash-es": "4.18.1",
"**/markdown-it": "14.1.1",
"**/picomatch": "4.0.4",
"**/tar": "7.5.13",
"@nx/devkit/minimatch": "10.2.5",
"@typescript-eslint/typescript-estree/minimatch": "10.2.5",
"nx/minimatch": "10.2.5"
}
}