-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "@waylis/core",
"version": "0.3.1",
"author": "cheatsnake",
"license": "MIT",
"description": "Tiny Node.js framework with built-in UI",
"keywords": [
"framework",
"server",
"ui"
],
"homepage": "https://github.com/waylis/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/waylis/core.git"
},
"bugs": {
"url": "https://github.com/waylis/core/issues"
},
"main": "./build/index.cjs",
"module": "./build/index.mjs",
"type": "module",
"scripts": {
"dev": "npx tsx --watch dev/main.ts",
"test": "npx tsx --test",
"build:server": "tsdown && cp package.shared.json build-shared/package.json",
"build:client": "npm run build --prefix ./ui",
"build": "npm run build:server && npm run build:client && cp -r ./ui/dist ./build/public",
"ui:init": "git submodule update --init ./ui",
"ui:install": "npm install --prefix ./ui",
"ui:update": "git submodule update --remote ./ui && git add ./ui && git commit -m 'chore: pull updates from ui'",
"predocs": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"verify:build": "npx tsx scripts/verify-build.ts"
},
"devDependencies": {
"@types/node": "^24.12.2",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^6.0.2",
"vitepress": "^2.0.0-alpha.17"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"mime": "^4.1.0"
},
"types": "./build/index.d.mts",
"files": [
"build"
],
"exports": {
".": {
"types": "./build/index.d.mts",
"import": "./build/index.mjs",
"require": "./build/index.cjs",
"default": "./build/index.mjs"
},
"./cjs": {
"require": "./build/index.cjs",
"types": "./build/index.d.cts"
}
}
}