-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"name": "@playword/root",
"private": true,
"keywords": [
"ai",
"automated test",
"langchain",
"openai",
"playwright"
],
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Foreverskyin0216/playword.git"
},
"license": "MIT",
"author": "Zong-Wei Lu <[email protected]>",
"type": "module",
"scripts": {
"test": "vitest run --coverage",
"lint:fix": "eslint . --fix",
"format:fix": "prettier . --write",
"prepare": "[ -d '.husky' ] && husky || (mkdir .husky && husky); echo 'npx --no-install commitlint --edit $1' > .husky/commit-msg; echo 'npm run pre-commit' > .husky/pre-commit; echo 'npm run pre-push' > .husky/pre-push",
"pre-commit": "lint-staged",
"pre-push": "npm run test",
"prepublishOnly": "npx lerna run build"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.19.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.32.1"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}