-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.23 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.23 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@_unit/unit",
"version": "1.0.121",
"main": "lib/index.js",
"bin": "./lib/server/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"require": "./lib/*.js"
},
"./*": {
"import": "./lib/*.js",
"types": "./lib/*.d.ts",
"require": "./lib/*.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:worker": "run-s watch:worker:system",
"watch:worker:system": "ts-node -T src/script/watch/worker/system.ts",
"watch": "run-p watch:server watch:client",
"start": "run-s serve",
"stop": "sudo node_modules/kill-port/cli.js 4000",
"serve": "node lib/server/index.js",
"setup": "run-s lib build",
"prepare": "",
"type": "tsc --noEmit",
"lib": "run-s rm tsc",
"tsc": "tsc",
"rm": "shx rm -rf lib",
"test": "ts-node -T -P src/test/tsconfig.json src/test/index.ts",
"uuid": "ts-node -T src/script/uuid.ts",
"build": "run-s build:system build:client build:web",
"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",
"lint": "eslint src --ext .ts -f unix",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'src/**/*.json' --write",
"prepublishOnly": "run-s lib build",
"electron": "electron lib/client/platform/electron/index.js"
},
"dependencies": {
"@_unit/unit": "file:.",
"commander": "12.1.0",
"compression": "1.8.1",
"cors": "2.8.5",
"cross-env": "7.0.3",
"eventsource": "4.1.0",
"express": "4.22.1",
"fuzzy": "0.1.3",
"glob": "7.1.6",
"http-errors": "1.8.0",
"jsdom": "24.0.0",
"ws": "8.18.1"
},
"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": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"@typescript-eslint/typescript-estree": "8.58.0",
"electron": "41.3.0",
"esbuild": "0.25.0",
"eslint": "9.39.2",
"eslint-config-prettier": "8.3.0",
"eslint-formatter-unix": "9.0.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-unused-imports": "4.3.0",
"fs-extra": "10.1.0",
"globals": "17.3.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"
}
}