-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
89 lines (89 loc) · 3.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@_unit/unit",
"version": "1.0.55",
"main": "lib/index.js",
"bin": "./lib/server/index.js",
"repository": "git@github.com:samuelmtimbo/unit.git",
"author": "Samuel Timbó <samuelmtimbo@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20.9"
},
"scripts": {
"v": "ts-node -T src/script/v.ts",
"dev:node": "cross-env NODE_ENV=development node",
"watch:server": "cross-env NODE_ENV=development nodemon --config nodemon.json",
"watch:bundle": "ts-node -T src/script/watch/client.ts",
"watch:client": "run-p watch:bundle watch:worker watch:sw watch:ext",
"watch:ext": "ts-node -T src/script/watch/ext.ts",
"watch:worker": "run-s watch:worker:system",
"watch:worker:system": "ts-node -T src/script/watch/worker/system.ts",
"watch:sw": "ts-node -T src/script/watch/sw.ts",
"watch": "run-p watch:server watch:client watch:worker",
"start": "run-s serve",
"stop": "sudo node_modules/kill-port/cli.js 4000",
"serve": "node lib/server/index.js",
"setup": "run-s build lib",
"prepare": "",
"type": "tsc --noEmit",
"lib": "run-s rm tsc",
"tsc": "tsc",
"rm": "shx rm -rf lib",
"test": "ts-node -T src/test/index.ts",
"uuid": "ts-node -T src/script/uuid.ts",
"build": "run-s build:system build:client build:sw build:ext",
"build:bundle": "ts-node -T src/script/build/client.ts",
"build:client": "run-s build:bundle build:worker",
"build:system": "ts-node -T src/script/build/system.ts",
"build:worker": "ts-node -T src/script/build/worker/system.ts",
"build:web": "ts-node -T src/script/build/web.ts",
"build:sw": "ts-node -T src/script/build/sw.ts",
"build:ext": "ts-node -T src/script/build/ext.ts",
"ext:zip": "cd src/client/extension/src && zip -9 -r -u -q extension.zip . -x '/*.git/*' '/*.vscode/*' '/*.gitignore' '/*.gitmodules' '/*node_modules/*' '/*.md' '/*yarn.lock' 'package-lock.json' 'package.json' 'tsconfig.json' '/*.js.map' '/*README.md' '/*.npmignore' '/*.DS_Store' '/*.prettierrc' '/*.prettierignore' '/*.eslintrc' '/*.ts' '/*.zip' '*/_/*'",
"lint": "eslint src --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'src/**/*.json' --write",
"prepublishOnly": "run-s lib build",
"electron": "electron lib/client/platform/electron/index.js"
},
"dependencies": {
"commander": "12.1.0",
"compression": "1.7.4",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"express": "4.21.0",
"fuzzy": "0.1.3",
"glob": "7.1.6",
"http-errors": "1.8.0",
"jsdom": "24.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.178",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/jsdom": "20.0.1",
"@types/node": "20.9.0",
"@types/ws": "8.5.2",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@typescript-eslint/typescript-estree": "6.20.0",
"electron": "28.1.1",
"esbuild": "0.17.5",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-unused-imports": "3.0.0",
"fs-extra": "10.1.0",
"kill-port": "2.0.1",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"npm-run-scripts": "2.1.3",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.3",
"shx": "0.3.3",
"ts-node": "10.4.0",
"typescript": "5.5.3",
"typescript-eslint": "0.0.1-alpha.0"
}
}