-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) 路 2.89 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) 路 2.89 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
{
"name": "foundation",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./dist/main.js",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"author": "David Bonnet <david@bonnet.cc>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nevoland/foundation.git"
},
"files": [
"dist",
"lib",
"!lib/old",
"!lib/**/*.test.ts?",
"!src",
"!src/old",
"README.md",
"doc/",
"!doc/.nojekyll"
],
"imports": {
"#lib": "./lib/main.ts",
"#lib/": "./lib/"
},
"scripts": {
"with": "node --env-file=${npm_config_env:-.env.local} $(which npm)",
"dev": "node src/server/watch.js",
"start": "node --env-file-if-exists=.env --env-file-if-exists=${ENV_PATH:-.env} src/server/main.ts",
"dev:test": "vitest --update --root=./",
"test": "npm run lint && npm run format && vitest run --root=./",
"build:lib": "rm -rf dist; tsc --project tsconfig.package.json",
"build:doc": "npm exec --yes --package=typescript@5.9.2 --package=typedoc@0.28.20 --package=typedoc-plugin-markdown@4.12.0 -- typedoc",
"build:doc:save": "npm run build:doc && git add -A && git commit -a -m 'Update doc'",
"build:app": "vite build",
"prepare": "npm run build:lib",
"format": "prettier --check './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"format:fix": "prettier --write './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"lint": "tsc --noEmit --project tsconfig.json",
"lint:fix": "npm run format:fix",
"release:init": "npm publish --access=public",
"release:patch": "npm version patch && git push origin --follow-tags && npm publish",
"release:minor": "npm version minor && git push origin --follow-tags && npm publish",
"release:major": "npm version major && git push origin --follow-tags && npm publish",
"release:alpha": "npm version prerelease --preid=alpha && git push origin --follow-tags && npm publish --tag=next",
"release:beta": "npm version prerelease --preid=beta && git push origin --follow-tags && npm publish --tag=next"
},
"devDependencies": {
"@nevoland/get-global": "^2.1.0",
"@preact/preset-vite": "^2.10.6",
"@types/node": "^24.1.0",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"cssnano": "^7.1.0",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.6",
"postcss-pseudo-classes": "^0.4.0",
"preact": "^10.26.9",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"realue": "^5.0.0-alpha.33",
"tailwindcss": "^3.4.17",
"typescript": "^7.0.2",
"unchangeable": "^2.0.0",
"vite": "^8.2.0",
"vite-plugin-module-list": "^2.6.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@types/express": "^5.0.3",
"express": "^5.1.0",
"pino": "^9.7.0",
"pino-abstract-transport": "^2.0.0",
"pino-http": "^10.5.0"
}
}