-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
{
"name": "@unts/deeplx",
"version": "0.0.0",
"type": "module",
"repository": "https://github.com/un-ts/deeplx.git",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**"
],
"packageManager": "yarn@4.9.1",
"scripts": {
"build": "run-p 'build:*'",
"build:r": "r -f cjs",
"build:tsc": "tsc -b tsconfig.lib.json",
"clean": "rimraf --glob .type-coverage coverage '.*cache' 'packages/**/{lib,*.tsbuildinfo}'",
"deeplx": "tsx packages/@deeplx/cli/src/cli.ts",
"format": "prettier --write .",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache --max-warnings 10",
"lint:tsc": "tsc -b --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "yarn build && changeset publish",
"test": "vitest run",
"typecov": "type-coverage",
"vercel-build": "yarn build && tsx scripts/build",
"version": "changeset version && yarn --no-immutable"
},
"devDependencies": {
"@1stg/common-config": "^13.0.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.2",
"@commitlint/cli": "^19.8.0",
"@deeplx/core": "workspace:*",
"@octokit/request": "^9.2.3",
"@pkgr/rollup": "^6.0.3",
"@vercel/node": "^5.1.14",
"@vitest/coverage-istanbul": "^3.1.1",
"eslint": "^9.24.0",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.12.1",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.3.0",
"tsx": "^4.19.3",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"node-fetch": "npm:node-fetch-native@^1.6.6",
"prettier": "^3.5.3",
"undici": "npm:undici@^7.8.0",
"undici-types": "npm:undici@^7.8.0"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}