-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.92 KB
/
package.json
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
{
"name": "jsxte",
"version": "3.3.1",
"description": "JSX-based html templating engine for browsers or Node environments.",
"license": "MIT",
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"keywords": [
"jsx",
"template",
"engine",
"express",
"node",
"browser",
"html"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./jsx-runtime": {
"types": "./dist/types/jsx-runtime.d.ts",
"import": "./dist/esm/jsx-runtime.mjs",
"require": "./dist/cjs/jsx-runtime.cjs"
},
"./jsx-dev-runtime": {
"types": "./dist/types/jsx-dev-runtime.d.ts",
"import": "./dist/esm/jsx-dev-runtime.mjs",
"require": "./dist/cjs/jsx-dev-runtime.cjs"
}
},
"scripts": {
"build": "node ./scripts/build.mjs",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir ./dist/types",
"test:lint": "eslint .",
"test:tsc": "tsc --noEmit",
"test:unit": "vitest run",
"test:fmt": "dprint check",
"fmt": "dprint fmt",
"prepare": "husky install"
},
"author": {
"name": "Szymon Bretner (ncpa0cpl)",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/ncpa0/jsxte"
},
"devDependencies": {
"@ncpa0cpl/nodepack": "~2.3.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "~7.0.0",
"@typescript-eslint/parser": "~6.21.0",
"axios": "~1.7.4",
"dprint": "^0.47.2",
"esbuild": "~0.24.0",
"eslint": "~8.57.0",
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#0.0.1",
"husky": "~8.0.3",
"jsdom": "^25.0.0",
"node-os-walk": "~1.0.2",
"pr-changelog-gen": "~1.1.3",
"typescript": "latest",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"sideEffects": false
}