-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
{
"name": "@arylo-scripts/function-control",
"version": "1.1.1",
"description": "Small function parameter helpers for TypeScript projects.",
"keywords": [
"typescript",
"function",
"parameters",
"helpers"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"API*.md",
"README*.md"
],
"scripts": {
"build": "concurrently -m 1 --timings npm:build:*",
"build:cjs": "tsdown src/index.ts --format cjs --out-dir dist --no-clean --platform neutral --target es2018 --sourcemap --dts",
"build:esm": "tsdown src/index.ts --format esm --out-dir dist --no-clean --platform neutral --target es2018 --sourcemap --no-dts",
"clean": "rimraf dist",
"lint": "concurrently -m 1 --timings npm:lint:*",
"lint:type-check": "tsc -p tsconfig.json --noEmit",
"lint:formatter": "oxfmt --check",
"lint:oxlint": "oxlint",
"fix:formatter": "oxfmt",
"prepare": "npm run build"
},
"packageManager": "npm@11.6.2",
"repository": {
"type": "git",
"url": "git+https://github.com/arylo-scripts/function-control.git"
},
"homepage": "https://github.com/arylo-scripts/function-control#readme",
"bugs": {
"url": "https://github.com/arylo-scripts/function-control/issues"
},
"author": "Arylo Yeung <arylo.open@gmail.com>",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@arylo-scripts/tsconfig": "^1.0.0",
"concurrently": "^8.2.2",
"oxfmt": "^0.35.0",
"oxlint": "^1.58.0",
"rimraf": "^6.1.3",
"tsdown": "^0.23.0",
"typescript": "~5.9.3"
},
"license": "MIT"
}