-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.68 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
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
{
"name": "fncts",
"packageManager": "[email protected]",
"type": "module",
"license": "BSD 3-Clause",
"repository": {
"type": "git",
"url": "https://gitlab.com/0x706b/fncts"
},
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"release": "changeset publish",
"build": "tsc -b --verbose",
"build-pack": "yarn build && yarn workspaces foreach -Ap run build-pack",
"format": "yarn workspaces foreach -Ap run format",
"clean": "yarn workspaces foreach -Ap run clean",
"test": "yarn build && yarn vitest",
"test:watch": "yarn org:concurrently 'yarn build --watch' 'yarn org:vitest --watch'",
"build-lint-deps": "yarn workspaces foreach -Rp --topological-dev --from @fncts/codegen run build-pack",
"lint": "yarn workspaces foreach -Ap run lint",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --warning packages/*/build/esm",
"postinstall": "tsplus-install",
"org:eslint": "cd $INIT_CWD && eslint",
"org:prettier": "cd $INIT_CWD && prettier",
"org:tsc": "cd $INIT_CWD && tsc",
"org:babel": "cd $INIT_CWD && babel",
"org:concurrently": "cd $INIT_CWD && concurrently",
"org:madge": "cd $INIT_CWD && madge",
"org:vitest": "cd $INIT_CWD && vitest",
"org:prettier-eslint": "cd $INIT_CWD && prettier-eslint"
},
"devDependencies": {
"@0x706b/eslint-plugin-align-assignments": "^0.1.2",
"@0x706b/eslint-plugin-module-specifier-extensions": "^0.1.10",
"@0x706b/prettier-eslint-8": "^0.0.3",
"@babel/cli": "^7.25.6",
"@babel/core": "7.25.2",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.8",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "9.11.1",
"@fncts/scripts": "workspace:*",
"@tsplus/installer": "0.0.186",
"@types/benchmark": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-c8": "^0.33.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-replace-import-extension": "^1.1.4",
"benchmark": "^2.1.4",
"concurrently": "^9.0.1",
"eslint": "9.7.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"madge": "^8.0.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "^7.18.0",
"vitest": "^2.1.1"
}
}