-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "briznads-helpers",
"version": "1.8.0",
"description": "Generic, zero-dependency* helper functions and types for use in disparate typescript projects.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "if [ -d dist ]; then rm -Rf dist; fi",
"build": "npm run lint && npm run clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./set_module_type.sh",
"npm_publish": "npm run build && npm publish --provenance --access public"
},
"license": "MIT",
"author": "briznad@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/briznad/briznads-helpers.git"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^5.0.4"
},
"dependencies": {
"nanoid": "^4.0.2"
}
}