This repository was archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "@wiggindev/utils",
"description": "Various utilities that I use in my projects",
"version": "0.2.4",
"author": {
"name": "Andrew Wiggin",
"email": "andrew@wiggin.dev",
"url": "https://wiggin.dev"
},
"repository": "git://github.com/wiggin",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && microbundle",
"dev": "rimraf dist && microbundle watch",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "tsc --noEmit && yarn eslint",
"format": "yarn eslint --fix && yarn prettier --write ."
},
"devDependencies": {
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"microbundle": "^0.15.0",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"packageManager": "yarn@3.2.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}