-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "opc-desktop",
"version": "0.1.0",
"private": true,
"description": "Fast desktop shell for OPC CLI",
"author": "OPC Contributors",
"main": "electron/main.cjs",
"type": "commonjs",
"scripts": {
"typecheck:refactor": "tsc -p tsconfig.check.json --pretty false",
"typecheck:utils": "tsc -p tsconfig.utils.json --pretty false",
"typecheck:loop-tests": "tsc -p tsconfig.loop-tests.json --pretty false",
"test:loop": "node --require ./test-shims/cjs-shim.cjs --import tsx --test src/utils/__tests__/*.test.ts",
"verify:ci": "npm run typecheck:refactor && npm run typecheck:utils && npm run typecheck:loop-tests && npm run test:loop && npm --prefix desktop run verify:ci"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}