-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.46 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
73
{
"org": "@ts-search",
"private": true,
"type": "module",
"repository": "https://github.com/Walexander/ts-search.git",
"author": "Will Alexander <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "ultra -r clean && rimraf tsconfig.tsbuildinfo",
"build": "ultra -r -b build-pack",
"build-all": "tsc -b tsconfig.json",
"build-watch": "tsc -b tsconfig.json --watch",
"circular": "yarn org:madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning packages/*/build/esm packages/*/build/test packages/*/build/examples",
"test": "vitest",
"autofix": "ultra -r autofix",
"lint": "ultra -r lint",
"tc": "ultra -r tc",
"postinstall": "tsplus-install",
"org:rimraf": "cd $INIT_CWD && rimraf",
"org:tsc": "cd $INIT_CWD && tsc",
"org:eslint": "cd $INIT_CWD && eslint",
"org:concurrently": "cd $INIT_CWD && concurrently",
"org:build-utils": "cd $INIT_CWD && build-utils",
"org:babel": "cd $INIT_CWD && babel",
"org:madge": "cd $INIT_CWD && madge"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@effect-ts/build-utils": "0.40.3",
"@effect-ts/core": "^0.60.2",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@tsplus/installer": "^0.0.124",
"@tsplus/stdlib": "^0.2.3",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-replace-import-extension": "^1.1.3",
"c8": "^7.11.3",
"concurrently": "^7.2.2",
"cpx": "^1.5.0",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.1.5",
"eslint-plugin-codegen": "0.16.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"madge": "^5.0.1",
"picocolors": "^1.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"ultra-runner": "^3.10.5",
"vite": "^2.9.13",
"vitest": "0.16.0"
},
"resolutions": {
"eslint-plugin-codegen": "patch:eslint-plugin-codegen@npm:0.16.1#.yarn/patches/eslint-plugin-codegen-npm-0.16.1-87770191cd"
},
"dependencies": {
"@fncts/base": "^0.0.11"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}