-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 2.45 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
{
"name": "tsplus",
"private": true,
"type": "module",
"repository": "https://github.com/ts-plus/stdlib.git",
"author": "Michael Arnaldi <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"release": "changeset publish",
"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.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@effect-ts/build-utils": "0.40.5",
"@effect-ts/core": "^0.60.4",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@tsplus/installer": "0.0.143",
"@types/node": "^18.7.23",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-replace-import-extension": "^1.1.3",
"c8": "^7.12.0",
"concurrently": "^7.4.0",
"cpx": "^1.5.0",
"eslint": "^8.24.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-codegen": "0.16.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"madge": "^5.0.1",
"picocolors": "^1.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"ultra-runner": "^3.10.5",
"vite": "^3.1.4",
"vitest": "0.21.1"
},
"resolutions": {
"eslint-plugin-codegen": "patch:eslint-plugin-codegen@npm:0.16.1#.yarn/patches/eslint-plugin-codegen-npm-0.16.1-87770191cd"
}
}