-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 985 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 985 Bytes
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
{
"name": "cryptarithmetic-solver",
"version": "1.0.0",
"private": true,
"description": "Cross-platform Cryptarithmetic Problem Solver with Electron desktop app",
"workspaces": [
"packages/shared",
"packages/solver-core",
"packages/electron-app"
],
"scripts": {
"build": "npm run build --workspaces",
"build:all": "npm run build:shared && npm run build:core",
"build:shared": "npm run build -w packages/shared",
"build:core": "npm run build -w packages/solver-core",
"build:app": "npm run build -w packages/electron-app",
"dev": "npm run dev -w packages/electron-app",
"test": "npm run test -w packages/solver-core",
"lint": "eslint packages/*/src/**/*.{ts,tsx}"
},
"devDependencies": {
"@types/caseless": "^0.12.5",
"@types/geojson": "^7946.0.16",
"@types/node": "^20.11.0",
"@types/request": "^2.48.13",
"@types/retry": "^0.12.5",
"@types/tough-cookie": "^4.0.5",
"typescript": "^5.4.0"
}
}