generated from darkroomengineering/satus
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@darkroom.engineering/hamo",
"version": "0.6.46",
"description": "hamo means hook, do the math.",
"files": [
"dist"
],
"sideEffects": false,
"source": "src/hamo.js",
"main": "dist/hamo.js",
"umd:main": "dist/hamo.umd.js",
"module": "dist/hamo.mjs",
"types": "dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/hamo.js",
"default": "./dist/hamo.modern.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/darkroomengineering/hamo"
},
"scripts": {
"dev": "vite",
"clean": "npm-run-all --parallel clean:bundled clean:dist",
"clean:bundled": "rimraf bundled",
"clean:dist": "rimraf dist",
"prepublishOnly": "npm version patch",
"postpublish": "git push --follow-tags",
"preversion": "npm run build",
"build": "npm-run-all --parallel clean build:dist build:types",
"build:types": "tsc --allowJs -d --emitDeclarationOnly --declarationDir ./dist/types --removeComments ./src/index.js --target es6",
"build:dist": "microbundle build -i src/ --o ./dist"
},
"keywords": [
"react",
"hooks"
],
"author": "darkroom.engineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkroomengineering/hamo/issues"
},
"homepage": "https://github.com/darkroomengineering/hamo",
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"@size-limit/preset-small-lib": "^8.2.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@darkroom.engineering/tempus": "^0.0.46",
"just-debounce-it": "^3.2.0",
"nanoevents": "^9.0.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}