-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.53 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
101
{
"name": "dreamland",
"version": "0.1.3",
"description": "A utilitarian HTML rendering library",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/MercuryWorkshop/dreamlandjs.git"
},
"homepage": "https://dreamland.js.org/",
"author": "Mercury Workshop",
"bugs": "https://github.com/MercuryWorkshop/dreamlandjs/issues",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw --config-dev",
"format": "prettier -w .",
"lint": "eslint",
"test": "bash tests/run.sh tests/core/ tests/util/",
"all": "pnpm format && pnpm lint && pnpm build && pnpm test && dust -sbo b dist/{core,{js,jsx}-runtime,router,ssr.{client,hybrid,server},motion,vite,util}.js",
"prepack": "npm run build"
},
"exports": {
"./core": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
},
"./js-runtime": {
"types": "./dist/js-runtime.d.ts",
"default": "./dist/js-runtime.js"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"default": "./dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"default": "./dist/jsx-runtime.js"
},
"./ssr/server": {
"types": "./dist/ssr.server.d.ts",
"default": "./dist/ssr.server.js"
},
"./ssr/hybrid": {
"types": "./dist/ssr.hybrid.d.ts",
"default": "./dist/ssr.hybrid.js"
},
"./ssr/client": {
"types": "./dist/ssr.client.d.ts",
"default": "./dist/ssr.client.js"
},
"./router": {
"types": "./dist/router.d.ts",
"default": "./dist/router.js"
},
"./motion": {
"types": "./dist/motion.d.ts",
"default": "./dist/motion.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
},
"./util": {
"types": "./dist/util.d.ts",
"default": "./dist/util.js"
}
},
"files": [
"dist/*.d.ts",
"dist/*.js",
"dist/*.js.map"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"magic-string": "^0.30.21",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.4.0",
"rollup-plugin-visualizer": "^7.0.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0"
},
"dependencies": {
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"htm": "^3.1.1",
"htmlparser2": "^10.1.0",
"lightningcss": "^1.32.0",
"rrweb-cssom": "^0.8.0"
}
}