-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 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
{
"name": "desktopjs",
"title": "desktopJS",
"private": true,
"license": "Apache-2.0",
"author": "Morgan Stanley",
"scripts": {
"build": "npm run build --workspaces --if-present",
"postbuild": "copyfiles -f packages/**/dist/*.*.js packages/**/dist/*.*.js.map examples/web/assets/build",
"clean": "npm run clean --workspaces --if-present",
"postclean": "rimraf build examples/web/assets/build",
"test": "jest --collectCoverage",
"start": "vite serve examples/web",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --quiet --fix",
"docs": "typedoc",
"deploy": "npm run deploy --workspaces --if-present",
"version": "npx lerna version --no-push --no-git-tag-version"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@jest/globals": "^30.0.3",
"@rollup/plugin-replace": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"copyfiles": "^2.4.1",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-n": "^17.19.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.1.2",
"jest-environment-jsdom": "^30.0.5",
"lint-staged": "^16.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4"
},
"overrides": {
"minimist@<1.2.6": "1.2.6",
"glob-parent@<5.1.2": "5.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --quiet"
]
},
"workspaces": [
"packages/desktopjs",
"packages/desktopjs-electron",
"packages/desktopjs-openfin",
"examples/electron"
],
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.41.1"
}
}