-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "webkit-tokene-monorepo-root",
"private": true,
"description": "TypeScript-based various types of solutions for TokenE projects only.",
"license": "MIT",
"homepage": "https://dl-tokene.github.io/webkit",
"repository": {
"type": "git",
"url": "git+https://github.com/dl-tokene/webkit.git"
},
"keywords": [
"tokene",
"webkit",
"web-kit",
"sdk",
"vue",
"utils",
"components",
"helpers"
],
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test && yarn rsc"
},
"scripts": {
"build": "yarn workspaces foreach -pv --topological-dev run build",
"docs": "typedoc --options typedoc.json",
"lint": "eslint . --ext .ts --fix --cache --max-warnings=0 && yarn workspaces foreach -pv --no-private run typecheck",
"test": "yarn workspaces foreach -pv --no-private run test",
"test:watch": "jest --watch",
"publish-next": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish --tag next",
"publish-latest": "yarn build && yarn workspaces foreach --no-private exec yarn npm publish",
"rsc": "node scripts/release-sanity-check.js",
"apply-version": "node scripts/version.js"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "1.3.53",
"@swc/jest": "^0.2.26",
"@types/eslint": "^8",
"@types/jest": "^29.5.1",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"typedoc": "^0.23.26",
"typescript": "^5.0.4",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}