-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "@pairshaped/hypertea",
"version": "0.0.0",
"description": "A tiny TypeScript TEA runtime for SSR client islands.",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./program": {
"types": "./dist/program.d.ts",
"import": "./dist/program.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
},
"./eslint": {
"types": "./eslint-purity.d.ts",
"import": "./eslint-purity.js"
}
},
"files": [
"dist",
"eslint-purity.d.ts",
"eslint-purity.js",
"README.md"
],
"scripts": {
"preinstall": "node -e 'const agent=process.env.npm_config_user_agent??\"\";if(!agent.startsWith(\"pnpm/\")){console.error(\"error: use pnpm for this repository\");process.exit(1)}'",
"bench": "pnpm run build && node benchmark/dom-patching.mjs",
"build": "tsc -p tsconfig.build.json",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test:coverage && pnpm run build",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [
"tea",
"typescript",
"hyperapp",
"ssr",
"islands"
],
"license": "UNLICENSED",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"hyperapp": "^2.0.22",
"jsdom": "^27.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
}
}