-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"name": "@agnishc/futil",
"version": "1.4.0",
"description": "A toolkit for fe utils",
"repository": "git@github.com:agnishcc/futil.git",
"author": "Agnish Chakraborty <agnishc.dev@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"move-file-cli": "^3.0.0",
"prettier": "^3.0.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@agnishc/minikit": "^1.0.0"
},
"scripts": {
"clean": "del-cli ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && move-file lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"test": "mocha",
"semantic-release": "semantic-release",
"prepack": "npm run build",
"typedoc": "typedoc --out ./docs ./src"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
]
}