-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "@jsheaven/render",
"version": "1.1.1",
"type": "module",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"description": "Nano library for isomorphic rendering of JSX into a DOM tree and serialized HTML.",
"keywords": [
"jsx",
"render",
"ssr",
"isomorphic"
],
"repository": {
"url": "git+https://github.com/jsheaven/render.git",
"type": "git"
},
"scripts": {
"pretest": "yarn build --dev",
"test": "NODE_OPTIONS='--experimental-vm-modules --enable-source-maps --no-warnings' jest --verbose --coverage ./test/*.test.tsx",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"prebuild": "yarn clean",
"build": "yarn node --enable-source-maps ./build.mjs && pkgroll --minify",
"postbuild": "yarn node --enable-source-maps ./finish.mjs"
},
"author": "Aron Homberg <info@aron-homberg.de>",
"sideEffects": false,
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"devDependencies": {
"@jsheaven/easybuild": "^1.2.8",
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jsdom": "^21.1.0",
"pkgroll": "^2.5.1",
"ts-jest": "^29.0.0-next.1",
"typescript": "^4.9.5"
},
"dependencies": {
"linkedom": "^0.14.22",
"csstype": "^3.1.3"
}
}