-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "canc",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "bisubus",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"prepare": "lefthook install",
"build": "cross-env NODE_OPTIONS=--no-deprecation lerna run build --stream",
"test": "cross-env NODE_OPTIONS=--no-deprecation lerna run test --stream",
"lint": "run-p -c lint:workspaces lint:root",
"lint:workspaces": "cross-env NODE_OPTIONS=--no-deprecation lerna run lint --stream --no-bail",
"lint:root": "eslint *.{js,mjs,json,md} scripts docs packages/_util packages/_toolbox",
"changeset": "changeset",
"release:version": "changeset version",
"release:publish": "changeset publish",
"bench": "npm run bench --workspace=@cancjs/benchmarks",
"bench:report": "npm run bench:report --workspace=@cancjs/benchmarks",
"bench:browser": "npm run bench:browser --workspace=@cancjs/benchmarks",
"examples:test": "npm --prefix examples run examples:test",
"examples:typecheck": "npm --prefix examples run examples:typecheck",
"examples:lint": "npm --prefix examples run examples:lint",
"examples:format": "npm --prefix examples run examples:format",
"format": "run-p -c format:workspaces format:root",
"format:workspaces": "cross-env NODE_OPTIONS=--no-deprecation lerna run format --stream --no-bail",
"format:root": "eslint --fix *.{js,mjs,json,md} scripts docs packages/_util packages/_toolbox"
},
"workspaces": ["packages/*", "benchmarks", "tests-types"],
"devDependencies": {
"@arethetypeswrong/cli": "~0.18.5",
"@changesets/changelog-github": "~0.7.0",
"@changesets/cli": "~2.31.1",
"@eslint/js": "~10.0.1",
"@eslint/json": "~2.0.1",
"@eslint/markdown": "~8.0.3",
"@rollup/plugin-commonjs": "~25.0.8",
"@rollup/plugin-node-resolve": "~15.2.3",
"@rollup/plugin-terser": "~1.0.0",
"@rollup/plugin-typescript": "~12.2.0",
"@types/jest": "~30.0.0",
"@types/node": "~20.19.43",
"cross-env": "~7.0.3",
"downlevel-dts": "~0.11.0",
"eslint": "~10.8.0",
"eslint-config-prettier": "~10.1.8",
"eslint-package-json": "~0.3.0",
"eslint-plugin-import-x": "~4.16.2",
"eslint-plugin-prettier": "~5.5.6",
"eslint-plugin-simple-import-sort": "~14.0.0",
"fast-check": "~4.9.0",
"globals": "~17.7.0",
"jest": "~30.4.2",
"jest-environment-jsdom": "~30.4.1",
"lefthook": "~2.1.10",
"lerna": "~9.0.7",
"npm-run-all2": "~8.0.4",
"prettier": "~3.9.6",
"publint": "~0.3.22",
"rimraf": "~5.0.7",
"rollup": "~4.62.2",
"rollup-plugin-filesize": "~10.0.0",
"rollup-plugin-node-externals": "~7.1.2",
"rollup-plugin-progress": "~1.1.2",
"ts-jest": "~29.4.11",
"tslib": "~2.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "~8.65.0"
},
"overrides": {
"downlevel-dts": {
"typescript": "~5.9.3"
}
}
}