-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.83 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
{
"name": "@d-exclaimation/seraph",
"version": "0.1.0-beta.5",
"author": {
"name": "d-exclaimation",
"email": "vincent@d-exclaimation.me"
},
"description": "Hassle-free web app, in an instant",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d-exclaimation/seraph.git"
},
"keywords": [
"web",
"framework",
"typescript",
"javascript",
"hydration",
"partial hydration"
],
"type": "module",
"main": "dist/export.cjs",
"module": "dist/export.js",
"types": "dist/export.d.ts",
"exports": {
".": {
"import": "./dist/export.js",
"require": "./dist/export.cjs",
"types": "./dist/export.d.ts"
},
"./router": {
"import": "./dist/router/export.js",
"require": "./dist/router/export.cjs",
"types": "./dist/router/export.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"tsconfig.json",
"README.md",
"LICENSE",
"**/package.json",
"docs/public/seraph.png"
],
"scripts": {
"prepublish": "vite build; tsc",
"dev": "vite",
"build": "vite build; tsc",
"build:playground": "PLAYGROUND=true vite build; echo '/* /index.html 200' > dist-playground/_redirects",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.30.1",
"autoprefixer": "^10.4.14",
"jsdom": "^21.1.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitepress": "1.0.0-alpha.65",
"vitest": "^0.30.1"
}
}