-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "haptic",
"version": "0.10.1",
"description": "Reactive TSX library in 1.6kb with no compiler, no magic, and no virtual DOM.",
"type": "module",
"main": "./publish/index.js",
"types": "./publish/index.d.ts",
"license": "MIT",
"author": "Gen Hames",
"exports": {
".": {
"import": "./publish/index.js",
"require": "./publish/index.cjs"
},
"./dom": {
"import": "./publish/dom/index.js",
"require": "./publish/dom/index.cjs"
},
"./state": {
"import": "./publish/state/index.js",
"require": "./publish/state/index.cjs"
},
"./stdlib": {
"import": "./publish/stdlib/index.js",
"require": "./publish/stdlib/index.cjs"
}
},
"keywords": [
"reactive",
"dom",
"tsx",
"frontend",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/heyheyhello/haptic"
},
"scripts": {
"build": "node --no-warnings --experimental-loader esbuild-node-loader build.ts",
"test": "node --no-warnings --experimental-loader esbuild-node-loader test.ts",
"gen-dts": "tsc --project tsconfig.json",
"bundlesize": "echo $(esbuild --bundle src/bundle.ts --format=esm --minify --define:S_RUNNING=4 --define:S_SKIP_RUN_QUEUE=2 --define:S_NEEDS_RUN=1 | gzip -9 | wc -c) min+gzip bytes"
},
"devDependencies": {
"@types/node": "^16.4.12",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"esbuild": "^0.12.18",
"esbuild-node-loader": "^0.1.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"fflate": "^0.7.1",
"typescript": "^4.3.5",
"zora": "^5.0.0",
"zora-reporters": "^1.0.0"
}
}